当前位置: 首页 > article >正文

vue使用方法创建组件

vue 中 创建 组件 使用 方法创建组件

vue2 中

import vueComponent from 'xxxx'
function createFn(){
    const creator = Vue.extend(vueComponent);
    const instance = new creator();
    document.appendChild(instance.$el);
}

vue3 中

import { createApp } from "vue";
import vueComponent from 'xxxxx'
export default function(){

        let divEle = document.createElement("div");
        divEle.style.display = 'none'
        // 让我们节点挂在到一个dom元素上
        document.body.appendChild(divEle);

        
        const $app = createApp(vueComponent);
        
        
        $app.mount(divEle);
    
}

http://www.kler.cn/a/382128.html

相关文章:

  • GitCode 光引计划投稿|JavaVision:引领全能视觉智能识别新纪元
  • ESP32应用开发-Webserver
  • JVM系列(十二) -常用调优命令汇总
  • 学习“Kotlin编程指南”笔记
  • 【spring-cloud-gateway总结】
  • 分布式系统架构5:限流设计模式
  • FRP反向代理使用
  • 使用 OpenCV 实现图像的透视变换
  • 数据结构,问题 E: 表达式括号匹配
  • 英语写作中用identify 替代find
  • Interpreter 解释器模式
  • 【C++组合数学】2850. 将石头分散到网格图的最少移动次数|2001
  • 51单片机教程(五)- LED灯闪烁
  • html练习2
  • 工作中问题
  • SQL,力扣题目1767,寻找没有被执行的任务对【递归】
  • 【点云学习笔记】——分割任务学习
  • 常见的排序算法(二)
  • 微信小程序的汽车维修预约管理系统
  • 【xml转JSON】
  • nginx 搭建网站
  • Django Admin
  • Redis 中 Bitmap 原理和应用
  • LeetCode 2487.从链表中移除节点
  • C++ | Leetcode C++题解之第523题连续的子数组和
  • pytorch学习:矩阵分解:奇异值分解(SVD分解)