3.引入自定义的组件

0.在src/components/left.vue,添加所需要的内容





1.在src/components/HelloWorld.vue中顶部引入(记住,引入不存在的组件,会直接报错)


2.在组件中使用

export default {
  name: 'HelloWorld',
  components: {
    left,
  },
}

3.在页面中使用


你可能感兴趣的:(3.引入自定义的组件)