vue install 组件
Posted alantao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue install 组件相关的知识,希望对你有一定的参考价值。
import share from ‘./index.vue‘ export default { install: (Vue) => { Vue.prototype.$share = (options) => { // 1.创建构造器,定义好提示信息的模板 const instance = Vue.extend(share); // 2.创建实例,挂载到文档以后的地方 let currentShare = new instance(); // 3.添加到DOM document.body.appendChild(currentShare.$mount().$el); // 4.设置属性 setTimeout(() => (currentShare.show = true), 0); // 5.自定义覆盖属性 Object.assign(currentShare, options); } } }
以上是关于vue install 组件的主要内容,如果未能解决你的问题,请参考以下文章
用于将 vue 组件发布到 npm 包中的 Webpack 配置