上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 由于cloudzoom.js依赖jquery库所以这里需要先引入jquery npm i jquery --save vue.config.js const webpack = require('webpack'); module.exports = { css: { // 是否使用css分离插件 阅读全文
posted @ 2021-06-19 01:15 佑之以航 阅读(682) 评论(0) 推荐(0) 编辑
摘要: 理解: 普通的父子组件修改值只能通过父组件设立方法,子组件传值到父组件进行修改,但vue提供了更方便的修改方式sync,写法如下: // 父组件 <template> <div class="about"> <!-- 入参.sync写法 --> <child :num.sync="num" /> < 阅读全文
posted @ 2021-02-19 11:49 佑之以航 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 这两天自己的电脑一直倒腾脚手架安装,但是只能进行到配置勾选完成,安装下载东西巨慢无比,而且会失败:( 经过反复的尝试(更换npm 仓库地址、卸载vue-cli、清除npm缓存...)都以失败告终! 最终在再次再次尝试时,发现命令行有两行提示,翻译过来的意思: 1. 当前vue-cli 版本低,建议升 阅读全文
posted @ 2021-02-14 23:40 佑之以航 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: 需求: 如果不存在公缀,返回空字符串,存在返回公缀 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial- 阅读全文
posted @ 2021-02-01 10:27 佑之以航 阅读(86) 评论(0) 推荐(0) 编辑
摘要: ####代码展示 label: { position: 'left', verticalAlign: 'middle', align: 'right', fontSize: 9, color: 'red', formatter: aa => { console.log(aa) return `{a| 阅读全文
posted @ 2021-01-12 19:58 佑之以航 阅读(305) 评论(0) 推荐(0) 编辑
摘要: ####1. 项目结构 . ├── config // 多项目webpack配置入口 ├── ├── test1.js // test1项目webpack配置 ├── public // 入口html文件 ├── src ├── modules ├── ├── test1 // 项目test1 │ 阅读全文
posted @ 2021-01-11 17:08 佑之以航 阅读(160) 评论(0) 推荐(0) 编辑
摘要: ###1.安装 npm instatll webpack-bundle-analyzer --save-dev ###2. vue.config.js配置 module.exports = { chainWebpack: config => { config .plugin('webpack-bun 阅读全文
posted @ 2021-01-11 14:00 佑之以航 阅读(503) 评论(0) 推荐(1) 编辑
摘要: <template> <div class="Echarts"> <div id="main" style="width: 600px;height:400px;" /> </div> </template> <script> import * as echarts from "echarts"; 阅读全文
posted @ 2020-12-19 17:24 佑之以航 阅读(171) 评论(0) 推荐(0) 编辑
摘要: vue.config.js configureWebpack: config => { config["externals"] = { AMap: "AMap" // 高德地图配置 }; } 地图组件.vue <template> <div class="box"> <div id="contain 阅读全文
posted @ 2020-06-09 21:37 佑之以航 阅读(5393) 评论(0) 推荐(0) 编辑
摘要: 安装 随便起一个test.vue 拷贝下面代码 阅读全文
posted @ 2020-05-12 22:48 佑之以航 阅读(1856) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页