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 全局组件的主要内容,如果未能解决你的问题,请参考以下文章

简单对比vue2.x与vue3.x响应式及新功能

2022-03-03 vue3中使用全局变量

vue2.x 路由懒加载 优化打包体积

vue2.x源码学习

vue2.x源码学习

Vue2.x directive自定义指令