## 动态组件
```
<div id="app">
//component标签是vue自带的
<component :is="show"></component>
<!--<child-one v-if="show === 'child-one'"></child-one>-->
<!--<child-two v-if="show === 'child-two'"></child-two>-->
<input type="button" @click="handleClick" value="change">
</div>
<script>
Vue.component('child-one', {
template: `
<div v-once>child-one</div> //使用了v-once,vue就不会去销毁组件了,而是保存在内存当中,这样做可以提高性能
`,
});
Vue.component('child-two', {
template: `
<div v-once>child-two</div>
`,
});
new Vue({
el: '#app',
data: {
show: 'child-one'
},
methods: {
handleClick: function () {
this.show = this.show === 'child-one' ? 'child-two' : 'child-one'
}
}
})
</script>
```
- 基础
- MVVM
- 前端组件化
- VUE实例
- 生命周期
- 指令
- v-bind
- 模板语法
- 使用样式
- class样式
- 内联样式
- v-for
- v-if和v-show
- 过滤器
- 计算属性
- 方法侦听器
- 计算属性的set和get
- watch,computed,methods对比
- 样式绑定
- 条件渲染
- 组件
- 组件化和模块化区别
- 使用组件的细节
- 父子组件数据传递
- 组件参数校验与非props特性
- 给组件绑定原生事件
- 非父子组件间的传值
- 在vue中使用插槽
- 作用域插槽
- 动态组件与v-once指令
- 动画特效
- vue中CSS动画原理
- 使用animate
- 同时使用过度和动画
- JS动画与velocity的结合
- 多个元素或组件的过度
- vue列表过度
- 动画封装
- 路由
- 什么是路由
- VUEX
- 概述
- 安装
- 访问仓库