自定义全局组件use使用

自定义vue全局组件

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

  • 一般组件的文件结构
    组件文件夹
    |- index.js 提供install方法(默认加载index.js)
    |- 组件.vue
    |- 图片,样式等

  • 实现组件的功能

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

<script>
    export default {
        props: {
            text: {
                type: String,
                default: 'Loading...'
            }
        }
    }
</script>
  • index.js中需要提供install方法
//index.js
import LoadingComonent from './Loading.vue';

export default {
    install(Vue) {
        Vue.component('Loading', LoadingComonent);
    }
}
  • 使用Vue.use来加载全局自定义组件
// 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>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容