vue全局弹窗

vue已经成为前端一个必备技能了,就像当年的jquery,所以好好学吧~

不多说上代码

// index.vue 弹框主体,可以直接组件的形式引用,后面会介绍如何在使用 this.$xxxx



// 下面就是一些样式,适用移动端,并使用rem做的适配

渲染到页面

// render.js

import Tpl from './index.vue'

export default function create(Vue, { store = {}, router = {}}, options) {
  const comp = new Vue({
    name: 'Root' + Tpl.name,
    router,
    store,
    data() {
      return {
        options: { ...options }
      }
    },
    render(h) {
      return h(Tpl, {
        props: this.options
      })
    }
  })

  comp.$mount()
  document.body.appendChild(comp.$el)
  comp.$children[0].visible = true


  return {
    close: () => comp.$children[0].close() // 暴露出去一个关闭的方法
  }
}

挂载

// index.js
import create from './render'

export default {
  install(Vue, options = {}) {
    Vue.prototype.$panel = create.bind(this, Vue, options)
  }
}

使用

// main.js
import Vue from 'vue'
import App from './App.vue'
import Panel from './base/panel'

Vue.use(Panel)

new Vue({
  render: h => h(App)
}).$mount('#app')

// 组件中全局使用
this.$panel({
    data: {
      class: 'xxxx',
      mask: true,
      title: '提示',
      content: 'xxx'
    },
    btns: [
      {
        text: '知道了',
        type: 'cancel',
        callback: () => { }
      }
    ],
    component: () => 
, listener: (res) => {console.log(res)} })

通过控制参数可以实现toast,可以进行二次封装

原文https://juejin.im/post/5d648ac26fb9a06af471d0a6

你可能感兴趣的:(vue全局弹窗)