Vue.extend()

2021/8/8 23:37:35

本文主要是介绍Vue.extend(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

作用:将ui组件转为js组件

利用Vue.extend()封装一个toast组件

1、components/MyToast/index.vue

<template>
  <div class="container" v-if="show">
    <div>{{ text }}</div>
  </div>
</template>

<script>
export default {
  name: 'Toast'
}
</script>

<style scoped>
.container {
  position: fixed;
  top: calc(50% - 20px);
  left: calc(50% - 50px);
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-sizing: border-box;
}
</style>

components/MyToast/index.js

import Vue from 'vue'
import Toast from './index.vue'

const ToastConstructor = Vue.extend(Toast)

function showToast(text, duration = 2000) {
  const toastDOM = new ToastConstructor({
    el: document.createElement('div'),
    data() {
      return {
        text: text,
        show: true
      }
    }
  })
  document.body.appendChild(toastDOM.$el)
  // console.log(toastDOM)
  setTimeout(() => {
    toastDOM.show = false
  }, duration)
}

function toastRegistry() {
  Vue.prototype.$myToast = showToast
}

export default toastRegistry

2、main.js

import toastRegistry from '@/components/MyToast'
Vue.use(toastRegistry)

3、使用

<button @click="$myToast('123',1500)">按钮</button>

 

 

 

 

 

https://www.cnblogs.com/wuqilang/p/12359571.html

封装Loading组件-JS组件

vue基于vant的popup组件封装confirm弹框

 



这篇关于Vue.extend()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程