Vue #39;export default#39; vs #39;new Vue#39;(Vue“导出默认与“新 Vue)
问题描述
我刚刚安装了 Vue,并且一直在遵循一些教程来使用 vue-cli webpack 模板创建项目.当它创建组件时,我注意到它将我们的数据绑定在以下内容中:
I just installed Vue and have been following some tutorials to create a project using the vue-cli webpack template. When it creates the component, I notice it binds our data inside of the following:
export default {
name: 'app',
data: []
}
而在其他教程中,我看到数据来自:
Whereas in other tutorials I see data being bound from:
new Vue({
el: '#app',
data: []
)}
有什么区别,为什么两者之间的语法看起来不同?我无法让新 Vue"代码从我所在的标签内部工作从 vue-cli 生成的 App.vue 中使用.
What is the difference, and why does it seem like the syntax between the two is different? I'm having trouble getting the 'new Vue' code to work from inside the tag I'm using from the App.vue generated by the vue-cli.
推荐答案
当你声明时:
new Vue({
el: '#app',
data () {
return {}
}
)}
这通常是应用程序其余部分所继承的根 Vue 实例.这将挂起在 html 文档中声明的根元素,例如:
That is typically your root Vue instance that the rest of the application descends from. This hangs off the root element declared in an html document, for example:
<html>
...
<body>
<div id="app"></div>
</body>
</html>
另一种语法是声明一个可以在以后注册和重用的组件.例如,如果您创建单个文件组件,例如:
The other syntax is declaring a component which can be registered and reused later. For example, if you create a single file component like:
// my-component.js
export default {
name: 'my-component',
data () {
return {}
}
}
您可以稍后导入它并像这样使用它:
You can later import this and use it like:
// another-component.js
<template>
<my-component></my-component>
</template>
<script>
import myComponent from 'my-component'
export default {
components: {
myComponent
}
data () {
return {}
}
...
}
</script>
另外,请务必将您的 data
属性声明为函数,否则它们不会是响应式的.
Also, be sure to declare your data
properties as functions, otherwise they are not going to be reactive.
这篇关于Vue“导出默认"与“新 Vue"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Vue“导出默认"与“新 Vue"
基础教程推荐
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01