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("成功")



posted @ 2017-09-10 09:52  lyls  阅读(730)  评论(0编辑  收藏  举报