摘要:
<template> <div class=""> <canvas id="canvas"></canvas> </div> </template> <script setup> import { onMounted } from 'vue'; let d const project3D = (x, 阅读全文
摘要:
2022已经走完。已经 2023/1/11(农历 腊月二十) 了 公司春节安排 在 元旦 就 已 出炉。 今年对所有人来说,应该都是糟糕的一年。 还是说说我自己吧! 先说工作 在2022年里 git 提交 代码 51次 可以看到有很多空白的地方 可以说这个 提交量 和 提交 次数 是非常少的 然后是 阅读全文
摘要:
效果图: 贴上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>新年快乐</title> <style> body{ overflow: hidden; margin: 0; } h1{ position: fixed; 阅读全文
摘要:
官网 https://www.wangeditor.com/v5/for-frame.html#%E4%BD%BF%E7%94%A8-1 安装: npm install @wangeditor/editor --save npm install @wangeditor/editor-for-vue@ 阅读全文
摘要:
1 子组件 Demo 里: <script setup> import {ref} from 'vue' let ceshi = ref(520) defineExpose({ // 通过 defineExpose 将 子组件 内部 数据 暴露给 父组件 !!!! ceshi }) </script 阅读全文
摘要:
父传子 父组件 绑定传参( :img_type="img_type") 不绑定只能传字符串 import {defineProps } from 'vue' let props = defineProps({ //子组件接收父组件传递过来的值 img_type: String, }) //视图中直接 阅读全文
摘要:
shallowRef 定义得数组 清空 let component_list = shallowRef([ {unit: Head, name: 'Head', id: 1}, {unit: TopClass, name: 'TopClass', id: 2}, ]) component_list. 阅读全文
摘要:
官网地址>> 引入后样式不对截图: 在 App.vue 贴上代码 如下: 附上代码: .el-message__content { width: auto; height: auto; background: none; } 达到期望结果截图: 阅读全文