
vue
蒋蒋蒋ing
我们说好的
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
miscro-app静态资源配置publicPath之后还是不显示问题(vue2)
assetsSubDirectory: 'microstatic', //assetsSubDirectory 资源子目录 存放静态资源文件的static,css、js、img。配置一下assetsSubDirectory试试。原创 2023-01-05 16:31:28 · 769 阅读 · 0 评论 -
bus 跨组件调用方法
1、新建bus.js import Vue from 'vue' // 使用 Event Bus const bus = new Vue() export default bus 2、main.js引用 import bus from '@/libs/bus' Vue.prototype.$bus = bus 3、被调用组件 this.getList()方法 created() { this.$nextTick(()=>{ this.$bus.$on("g原创 2022-01-29 16:05:53 · 574 阅读 · 0 评论 -
vue-quill-editor使用
<template> <quill-editor v-model="form.content" ref="myQuillEditor" :options="editorOption" @blur="onEditorBlur($event)" @focus="onEditorFoc...原创 2020-06-08 11:23:38 · 815 阅读 · 0 评论 -
element-ui时间设置日期可选范围
<el-date-picker @change="handleFilter(5)" v-model="timeRange" size="small" type="daterange" align="right" value-format="yyyy-MM-dd" unlink-panels ...原创 2020-05-08 17:41:18 · 1124 阅读 · 0 评论 -
vue 上传视频到七牛
<template> <div> <input type="file" name='upFile' id="upFile" @change='changeFile($event)'></input> <input type="button" name="开始上传" value="开始上传" @click='uplo...原创 2020-04-26 16:24:57 · 833 阅读 · 0 评论 -
vue导入导出excel element-ui upload axios
<el-button class="filter-item" size="small" @click="batchExport" type="primary" icon="edit" >表格导出</el-button&g...原创 2019-04-10 16:14:35 · 592 阅读 · 0 评论 -
echarts
<!-- 线性图 --> <style lang="stylus" scoped> .chart { margin-top: 50px; height: 70vh; background-size: 100% 100%; color: white; .main { width: 100%; height: calc(100% - ...原创 2019-09-10 15:30:47 · 383 阅读 · 1 评论