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()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程
- 2024-12-20Vue3入门教程:从零开始搭建你的第一个Vue3项目
- 2024-12-20从零开始学习vueRouter4:基础教程
- 2024-12-20Vuex4课程:新手入门到上手实战全攻略