创建并使用组件
- 创建.vue文件、编写内容并使用export导出
- 在要使用该组件的页面使用import导入
- 在components属性里面注册
import Card from './components/Card.vue' export default { components:{ Card } }
- 在页面上使用标签来完成渲染
<Card></Card>
文件首字母建议大写开头
使用标签时建议大写开头,以区分html原生标签
import Card from './components/Card.vue' export default { components:{ Card } }
<Card></Card>
文件首字母建议大写开头
使用标签时建议大写开头,以区分html原生标签