组件的概念
Vue 组件同时也都是 Vue 实例,可接受相同的选项对象option
(除了一些根级特有的选项) 和使用相同的生命周期钩子,以及模板调用方式。
组件的构建和注册
com = Vue.extend(option)
Vue.component('my-com', com)
vm.components: {'my-com': com}
Vue.component('my-com',option)
vm.components('my-com': option)
组件三大API: prop
/ event
/ slot
prop
props: ['prop1', 'prop2', ...]
js props: {prop1: Number} props: { prop1: { type: [Number, String], required: true, default: 100, //当默认值是对象或数组时,必须从函数返回值获取 () => { return value } validator: (value) => { // do somethings return Boolean return result } } }
inheritAttr: false
$attr
event
v-on / $on
监听事件$once
一次性事件$emit
触发事件$off
卸载事件监听$listeners
v-on绑定监听器集合(除原生监听事件).native
原生事件修饰符.sync
双向绑定修饰符model
属性slot
html <slot></slot>
html <slot>default content</slot>
html <slot name="someName"></slot> <!-- 组件调用 --> <my-com> <template v-slot:somName></template> <my-com>
html <slot :prop="value"></slot> <!--组件调用 --> <my-com> <template v-slot='childValue'>{{ cilidValue.value}}</template> </my-com>
html <some-component v-slot="childValue"> {{ childValue.value }}</some-component> <some-component v-slot:default="childValue"> {{ childValue.value }}</some-component>
html <my-com v-slot="{value}">{{ value }}</my-com> <!-- 重命名 --> <my-com v-slot="{value: otherName}">{{ otherName }}</my-com> <!-- 重命名并提供默认值 --> <my-com v-slot="{value: {otherName: defaultValue}}">{{ otherName }}</my-com>
html <my-com> <template v-slot:[dynamicSlotName]></template> </my-com>
v-slot
的简写 #
html <my-com> <template #somName></template> <my-com>
组件依赖注入
provide
inject
组件实例的引用
ref / $refs
$root
$parent
$children
自定义扩展方法
组件间的通信
prop / $emit
$attrs
/ $liteners
provide / inject
$root
/ $parent
/ $children
/ $refs
const Bus = new Vue()
Vuex
动态组件<component is="com-name"></component>
异步组件function
内置组件transiton
/ keep-alive
/ component
其它
v-once
创建静态组件手机扫一扫
移动阅读更方便
你可能感兴趣的文章