在全局挂载


   
   
  1. import App from './App.vue'
  2. app. use( ElementPlus)
  3. app. mount( '#app')
  4. //方法--全局挂载
  5. ref. resize()
  6. })
  7. }
  8. app. config. globalProperties. $Test = "我在全局";

组件使用

        在组件实例需要vue引入getCurrentInstance ,再通过 getCurrentInstance 获取proxy,进而可以获取全局挂载实例进行使用


   
   
  1. import { onMounted } from 'vue';
  2. import * as echarts from 'echarts';
  3. import { getCurrentInstance } from 'vue'
  4. const { proxy } = getCurrentInstance();
  5. const echartInit = ( data) => {
  6. var myChart = echarts. init( document. getElementById( 'main'));
  7. // 绘制图表
  8. myChart. setOption({...});
  9. // 响应式--使用
  10. proxy.$echartsResize(myChart)
  11. }
  12. onMounted( async () => {
  13. echartInit()
  14. })
  15. </script&gt;

原文地址:https://blog.csdn.net/weixin_64310738/article/details/129034399

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_43808.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注