vue组件

<template></template>标签中使用组件<Appbar></Appbar>
<script></script>标签中导入组件:import Appbar from '../components/Appbar'
<script></script>标签中的export default{}中注册组件:components:{Appbar: Appbar}
vue的学习之组件
vue的学习之组件

vue中使用动画

在Index.vue文件的<template><div></div></template>标签中嵌入<transition name="fade"></transition>标签
vue的学习之组件

相关文章: