vue 在main中配置全局的通用组件

在main.js中直接引入并注册就可以在自己想要的页面中使用组件了

main.js代码:

import mymenuButton from '@/components/mymenuButton';
import logoMin from '@/components/logomin.vue';
Vue.component('mymenuButton', mymenuButton)
Vue.component('logoMin', logoMin)

html中使用:

<template>
   <div class='warpp'>
       <mymenuButton v-on:childByValue="childByValue"></mymenuButton>
       <logo-min></logo-min>
   </div>
</template>

你可能感兴趣的:(前端)