vue全局配置组件

在mian.js中引入

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

在组件中直接使用

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

 

posted @ 2019-02-27 16:19  ①丶①۵  阅读(270)  评论(0编辑  收藏  举报