自定义全局组件use使用

2017-06-09  本文已影响0人  yanghanbin_it

自定义vue全局组件

项目源码: https://github.com/yanghanbin-sz/custom-global-components

//Loading.vue
<template>
    <div class="loading-box">
        {{text}}
    </div>
</template>

<script>
    export default {
        props: {
            text: {
                type: String,
                default: 'Loading...'
            }
        }
    }
</script>
//index.js
import LoadingComonent from './Loading.vue';

export default {
    install(Vue) {
        Vue.component('Loading', LoadingComonent);
    }
}
// main.js
import Vue from 'vue'
import App from './App.vue'

import Loading from './components/loading' // 默认加载index.js

Vue.use(Loading);

new Vue({
  el: '#app',
  render: h => h(App)
})
<template>
    <div id="app">
        {{msg}}
        <Loading :text="'加载中...'"></Loading>
    </div>
</template>
<script>
export default {
    name: 'app',
    data() {
        return {
            msg: 'Welcome to Your Vue.js App'
        }
    }
}
</script>
<style>

a {
    color: #42b983;
}
</style>

上一篇 下一篇

猜你喜欢

热点阅读