vue.js hello world
效果:
局部注册
不需要全局注册每个组件。可以让组件只能用在其它组件内,用实例选项 components
注册:
var Child = Vue.extend({ /* ... */ })var Parent = Vue.extend({ template: '...', components: { //只能用在父组件模板内 'my-component': Child }})
本文共 288 字,大约阅读时间需要 1 分钟。
vue.js hello world
效果:
不需要全局注册每个组件。可以让组件只能用在其它组件内,用实例选项 components
注册:
var Child = Vue.extend({ /* ... */ })var Parent = Vue.extend({ template: '...', components: { //只能用在父组件模板内 'my-component': Child }})
转载地址:http://zcqcx.baihongyu.com/