Vue2.x 全局组件
Posted lyls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue2.x 全局组件相关的知识,希望对你有一定的参考价值。
App.vue:
注册全局组件:
import toastr from ‘./common-componetnt/toastr/toastr.vue‘
Vue.component(‘toastr‘, toastr);
组件里边使用:
<template>
<toastr ref="toastr"></toastr>
</template>
script:
this.$refs.toastr.success("成功")
以上是关于Vue2.x 全局组件的主要内容,如果未能解决你的问题,请参考以下文章