组件注册使用:先在js导入组件,然后注册就可以使用标签了,使用组件不能用大写要用-符合隔开
import testItem from './test'; export default { components: { testItem } } // 使用<test-item></test-item>
注意:uni-app
组件支持的生命周期,与vue标准组件的生命周期相同。但是没有页面级的onLoad等生命周期,就是说没有触底和下拉刷新事件了
组件注册使用:先在js导入组件,然后注册就可以使用标签了,使用组件不能用大写要用-符合隔开
import testItem from './test'; export default { components: { testItem } } // 使用<test-item></test-item>
注意:uni-app
组件支持的生命周期,与vue标准组件的生命周期相同。但是没有页面级的onLoad等生命周期,就是说没有触底和下拉刷新事件了