• vue3 + vite + ts + setup , 第十一练 Vue3自定义全局函数和变量,vue3 如何使用自定义插件


    定义全局变量main.ts

    1. const Vue = createApp(App)
    2. Vue.config.globalProperties.$Bus = Mit
    3. Vue.config.globalProperties.$filters = {
    4. format<T>(str: T): string {
    5. return `我是傻逼-${str}`
    6. }
    7. }

    声明变量 函数类型 不然ts无法正确类型 推导

    1. // 全局声明 获取mitt所有的类型
    2. declare module 'vue' {
    3. export interface ComponentCustomProperties {
    4. $Bus: typeof Mit,
    5. $filters: Filter,
    6. $loading: {
    7. show: (str: string) => void,
    8. hide: () => void
    9. }
    10. }
    11. }
    12. type Filter = {
    13. format: <T>(str: T) => string
    14. }

    main.ts全部代码:

    1. import { createApp } from 'vue'
    2. import App from './App.vue'
    3. import './assets/css/reset.css'
    4. import mitt from 'mitt'
    5. const Mit = mitt()
    6. import Card from "./components/Card/index.vue"
    7. // 自定义插件
    8. import Loading from "./components/插件/loading"
    9. const Vue = createApp(App)
    10. // 全局声明 获取mitt所有的类型
    11. declare module 'vue' {
    12. export interface ComponentCustomProperties {
    13. $Bus: typeof Mit,
    14. $filters: Filter,
    15. $loading: {
    16. show: (str: string) => void,
    17. hide: () => void
    18. }
    19. }
    20. }
    21. type Filter = {
    22. format: <T>(str: T) => string
    23. }
    24. Vue.config.globalProperties.$Bus = Mit
    25. Vue.config.globalProperties.$filters = {
    26. format<T>(str: T): string {
    27. return `我是傻逼-${str}`
    28. }
    29. }
    30. Vue.component('Card', Card)
    31. Vue.use(Loading)
    32. Vue.mount('#app')

    在组件中使用全局变量:

    1. import { getCurrentInstance,ComponentInternalInstance } from 'vue';
    2. //两种使用方式 方式一
    3. let { proxy } = getCurrentInstance() as ComponentInternalInstance
    4. //两种使用方式 方式二
    5. let instance = getCurrentInstance() as ComponentInternalInstance
    1. <script setup lang="ts">
    2. import { getCurrentInstance,ComponentInternalInstance } from 'vue';
    3. //两种使用方式 方式一
    4. let { proxy } = getCurrentInstance() as ComponentInternalInstance
    5. //两种使用方式 方式二
    6. let instance = getCurrentInstance() as ComponentInternalInstance
    7. //图片地址
    8. let pic = "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fc-ssl.duitang.com%2Fuploads%2Fitem%2F201410%2F17%2F20141017085556_LEQ83.thumb.700_0.jpeg&refer=http%3A%2F%2Fc-ssl.duitang.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1659620417&t=b17d6f1633a492977cb8bd79b0eac7de"
    9. let openLoading = () => {
    10. proxy?.$loading.show(pic)
    11. setTimeout(() => {
    12. instance.appContext.config.globalProperties.$loading.hide()
    13. }, 3000)
    14. }
    15. </script>

    自定义插件的使用

    插件是一种能为 Vue 添加全局功能的工具代码

    你如果是一个对象需要有install方法Vue会帮你自动注入到install 方法 你如果是function 就直接当install 方法去使用

    它可以是一个拥有 install() 方法的对象,或者就简单地只是一个函数,它自己就是安装函数。安装函数接收应用实例和传递给 app.use() 的额外选项

    在使用 createApp() 初始化 Vue 应用程序后,你可以通过调用 use() 方法将插件添加到你的应用程序中。

    实现一个loadding, 通过传参实现loading图标自定义修改:

    创建一个文件夹 我是放在components 下的

    components/loading/loading.vue

    components/loading/index.ts

    loading.vue

    1. <template>
    2. <div v-if="isShow" class="loading">
    3. <img :src="img" alt="">
    4. <div class="loading-content">Loading...</div>
    5. </div>
    6. </template>
    7. <script setup lang='ts'>
    8. import { ref } from 'vue';
    9. const isShow = ref(false)//定位loading 的开关
    10. let img = ref('')
    11. const show = (imgSrc: string) => {
    12. console.log("图片地址", imgSrc)
    13. img.value = imgSrc
    14. isShow.value = true
    15. }
    16. const hide = () => {
    17. isShow.value = false
    18. }
    19. //对外暴露 当前组件的属性和方法
    20. defineExpose({
    21. isShow,
    22. show,
    23. hide
    24. })
    25. </script>
    26. <style scoped lang="less">
    27. .loading {
    28. position: fixed;
    29. inset: 0;
    30. background: rgba(0, 0, 0, 0.8);
    31. display: flex;
    32. justify-content: center;
    33. align-items: center;
    34. &-content {
    35. font-size: 30px;
    36. color: #fff;
    37. }
    38. }
    39. </style>

    index.ts

    1. import Loading from "./loading.vue"
    2. import { App, createVNode, render, VNode } from 'vue'
    3. export default {
    4. install: (app: App) => {
    5. // 将Loading插件转成虚拟dom
    6. // 挂在前
    7. const vnode: VNode = createVNode(Loading)
    8. // 转成真实dom 第一个参数是dom 第二个参数是挂载点
    9. render(vnode, document.body)
    10. app.config.globalProperties.$loading = {
    11. show: vnode.component?.exposed?.show,
    12. hide: vnode.component?.exposed?.hide
    13. }
    14. console.log("laodddddd", vnode?.component?.exposed)
    15. }
    16. }

    main.ts引用

    1. import { createApp } from 'vue'
    2. import App from './App.vue'
    3. // 自定义插件
    4. import Loading from "./components/插件/loading"
    5. const Vue = createApp(App)
    6. // 全局声明 获取mitt所有的类型
    7. declare module 'vue' {
    8. export interface ComponentCustomProperties {
    9. $loading: {
    10. show: (str: string) => void,
    11. hide: () => void
    12. }
    13. }
    14. }
    15. Vue.use(Loading)
    16. Vue.mount('#app')

    组件中 使用自定义插件:

    1. <template>
    2. <div>
    3. <button @click="openLoading">打开加载插件</button>
    4. </div>
    5. </template>
    6. <script setup lang="ts">
    7. import {getCurrentInstance, ComponentInternalInstance } from 'vue';
    8. let { proxy } = getCurrentInstance() as ComponentInternalInstance
    9. let instance = getCurrentInstance() as ComponentInternalInstance
    10. let pic = "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fc-ssl.duitang.com%2Fuploads%2Fitem%2F201410%2F17%2F20141017085556_LEQ83.thumb.700_0.jpeg&refer=http%3A%2F%2Fc-ssl.duitang.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1659620417&t=b17d6f1633a492977cb8bd79b0eac7de"
    11. let openLoading = () => {
    12. proxy?.$loading.show(pic)
    13. setTimeout(() => {
    14. instance.appContext.config.globalProperties.$loading.hide()
    15. }, 3000)
    16. }
    17. </script>
    18. <style scoped>
    19. </style>

    效果: 

  • 相关阅读:
    (附源码)spring boot智能服药提醒app 毕业设计 102151
    C++ 字符串string
    Opencv中的直方图均衡
    微擎模块 万能门店7.3.4小程序无限DIY版后台模块+前端小程序源码
    老卫带你学---leetcode刷题(137. 只出现一次的数字 II)
    【matlab 代码的python复现】 Matlab实现的滤波器设计实现与Python 的库函数相同实现Scipy
    计算机毕业设计Python+django的个人博客系统(源码+系统+mysql数据库+Lw文档)
    BERT-as-service 时隔三年突然更新,这次连名儿都改了
    python性能提升之字符串拼接、字节流拼接
    软件需求—《软件工程与计算》笔记
  • 原文地址:https://blog.csdn.net/csl125/article/details/125630051