Vue 2.2.2 不向视图显示数据
Vue 2.2.2 doesn't display the data to the View
Current Version : Laravel 5.2 using only Browserify not Webpack
我已经像这样设置了一切:
In my resources/js/app.js
window.Vue = require('vue');
new Vue({ el : '.row',
data : { name: '' }
});
在我看来:
<div class="row">
<input type ="text">
<h1> @{{ name }} </h1>
</div>
但是当我尝试刷新它时。 DOM 只渲染了大约 2 毫秒,或者说一瞬间就消失了,并且有一个错误提示:
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
(found in )
您使用的是 runtime-only
版本,但您可能需要 standalone build
,为此只需将以下内容添加到您的 package.json
以作为独立版本的别名(其中包括模板编译器):
"browser": {
"vue": "vue/dist/vue.common.js"
}
Current Version : Laravel 5.2 using only Browserify not Webpack
我已经像这样设置了一切:
In my resources/js/app.js
window.Vue = require('vue');
new Vue({ el : '.row',
data : { name: '' }
});
在我看来:
<div class="row">
<input type ="text">
<h1> @{{ name }} </h1>
</div>
但是当我尝试刷新它时。 DOM 只渲染了大约 2 毫秒,或者说一瞬间就消失了,并且有一个错误提示:
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build. (found in )
您使用的是 runtime-only
版本,但您可能需要 standalone build
,为此只需将以下内容添加到您的 package.json
以作为独立版本的别名(其中包括模板编译器):
"browser": {
"vue": "vue/dist/vue.common.js"
}