假设: 需要一个评论的模块comment由于comment在多个页面中可能会复用.于是创建一个comment.vue 步骤: 创建comment.vue在需要引用的位置使import comment from '../subcomponent/Comment.vue' 导入子组件在Vue实例中使用components属性注册注册的规则: “comment-box” : comment (前者是在template中使用的标签名,后者是已经写好的组件名) 创建Comment.vue <template><div><h3>评论子组件</h3></div> </template> <script> </script> <style lang = "scss" scoped></style> 导入并使用 // 父组件 NewsInfo.vue <script> import comment from '../subcomponents/comment.vue';export default {data() {return () {...}},...components: {"comment-box":comment} } </script><template><comment-box></comment-box>\ </template>