-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vue注意点~ #52
Comments
全局注册的行为必须在根 Vue 实例 (通过 new Vue) 创建之前发生。 |
所有的 prop 都使得其父子 prop 之间形成了一个单向下行绑定:父级 prop 的更新会向下流动到子组件中,但是反过来则不行。这样会防止从子组件意外改变父级组件的状态,从而导致你的应用的数据流向难以理解。 额外的,每次父级组件发生更新时,子组件中所有的 prop 都将会刷新为最新的值。这意味着你不应该在一个子组件内部改变 prop。如果你这样做了,Vue 会在浏览器的控制台中发出警告。 |
这里有两种常见的试图改变一个 prop 的情形:
props: ['initialCounter'],
props: ['size'], |
父级模板里的所有内容都是在父级作用域中编译的;子模板里的所有内容都是在子作用域中编译的。 |
ue 提供了 transition 的封装组件,在下列情形中,可以给任何元素和组件添加进入/离开过渡
当插入或删除包含在 transition 组件中的元素时,Vue 将会做以下处理:
|
自组件中,data 必须是一个函数,不是一个对象
这样的好处就是每个实例可以维护一份被返回对象的独立的拷贝,如果 data 是一个对象则会影响到其他实例
The text was updated successfully, but these errors were encountered: