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("成功")
时间: 2024-10-14 00:43:58
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("成功")