vue
已入陆地神仙
这个作者很懒,什么都没留下…
展开
-
如何让你开发的组件支持 v-model
自定义组件绑定v-model原创 2022-02-14 15:46:07 · 624 阅读 · 2 评论 -
vue + el-table+draggable实现课表单元格拖拽
vue + el-table+draggable实现课表单元格拖拽<template> <div class="schedule"> <el-table :data="tableData" border style="width: 100%; font-size: 16px"> <el-table-column prop="index" label="节次" width="80"原创 2021-11-30 17:04:24 · 6816 阅读 · 0 评论 -
vue+echarts-liquidfill实现水球图
vue+echarts-liquidfill实现水球图<template> <div class="polo-bix" :id="id" :style="{ width: Width, height: Height }" ></div></template><script>import "echarts-liquidfill";import echarts from "ec原创 2021-05-31 17:04:37 · 715 阅读 · 0 评论 -
vue render函数基础使用
vue render是直接渲染成dom树没有编译过程。渲染更高效、方便逻辑处理。vue render分两种情况使用在组件中直接通过render创建组件,这种情况可以结合template一起使用通过render创建组件拥有template组件全部方法属性components:{ NodeContent: { props: { level: { type: Array }原创 2021-04-13 14:41:55 · 126 阅读 · 0 评论 -
vue.config.js配置参考
// vue.config.jsconst path = require(‘path’);const CompressionWebpackPlugin = require(“compression-webpack-plugin”); // 开启gzip压缩, 按需引用const productionGzipExtensions = /.(js|css|json|txt|html|ico|svg)(?.*)?$/i; // 开启gzip压缩, 按需写入const BundleAnalyzerPlugi原创 2021-04-13 11:26:58 · 173 阅读 · 0 评论