是否可以使用带有&符号的早午餐?

时间:2015-06-17 11:55:44

标签: ampersand brunch

我正在尝试使用带有早午餐的&符号而不是浏览器,但它会导致一些问题。

以下是代码:

"use strict";

var View = require("ampersand-view");

var HelloView = View.extend({
    autoRender: true,
    template: '<p>Hello</p>'
});

var app = new HelloView();

document.body.appendChild(app.el);

brunch-config文件有:

npm:
    enabled: true

早午餐构建命令没问题但是当我在浏览器中运行页面时,我得到:

View.extend is not a function

View对象的console.log为我提供了一个&#34;函数baseCopy()&#34;对象

根本不可能使用带有早午餐的&符号(没有浏览器插件)?

0 个答案:

没有答案