局部注册
//使用组件
<template>
<mySom></mySom>
<template>
<script>
//导入组件
import mySom from '../abc/mySom.vue'
export default {
// 注册组件
components:{
mySom
}
}
</script>
全局注册 在main.js文件中
import mySom from '../abc/mySom.vue'
Vue.component('mySom',mySom)