webpack 部分相关配置 const path = require('path'); const VueLoaderPlugin = require('vue-loader/lib/plugin'); const HtmlWebpackPlugin = require('html-webpack ...
分类:
其他好文 时间:
2020-07-12 00:54:40
阅读次数:
93
vue 1.static和assets的区别 assets和static两个都是用于存放静态资源文件。 放在static中的文件不会进行构建编译处理,也就不会压缩体积,在打包时效率会更高,但体积更大在服务器中就会占据更大的空间。 放在assets中的文件会进行压缩体积、代码格式化,压缩后会放置在st ...
分类:
其他好文 时间:
2020-07-11 00:24:12
阅读次数:
82
给路径起别名 在根目录添加vue.config.js文件 module.exports = { configureWebpack: { resolve: { alias: { 'assets': '@/assets', 'common': '@/common', 'components': '@/c ...
分类:
Web程序 时间:
2020-07-10 21:24:14
阅读次数:
118
We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move t ...
分类:
其他好文 时间:
2020-07-07 10:21:05
阅读次数:
78
1.国内如何快速访问gibhub -FQ的方法无非就是用软件,这种就不介绍了 -本次介绍的是修改本地系统主机hosts文件,绕过国内dns解析,达到快速访问github 打开IPAddress.com网站,查询下列三个地址的ip 1.github.com 2.assets-cnd.github.co ...
分类:
其他好文 时间:
2020-07-07 09:23:01
阅读次数:
422
1. ts文件与html交互 // 在ts文件中声明变量 public title = 'Hello'; // 在html中使用变量(使用两个花括号) <h1>{{ title }}</h1> // 绑定html ts: public h = '<h1>Hello</h1>' html: <div ...
分类:
其他好文 时间:
2020-07-02 16:52:58
阅读次数:
54
第一个小程序 <template> <div id="app"> <div>hello world!</div> <router-view></router-view> </div> </template> <script> export default { name: 'App' } </scri ...
分类:
其他好文 时间:
2020-07-01 14:21:10
阅读次数:
182
1.引入高德地图如何去掉地图上的logo .amap-logo { display: none; } 2.地图上添加图标 new AMap.Marker ({ icon: require('../../../assets/img/platform.png'), offset: new AMap.Pi ...
分类:
其他好文 时间:
2020-06-29 11:13:43
阅读次数:
202
import './assets/css/style.css'; const app = document.getElementById('app'); app.innerHTML = ` <div class="todos"> <div class="todos-header"> <h3 clas ...
分类:
编程语言 时间:
2020-06-28 22:33:52
阅读次数:
62
基础写法, 没有懒加载import Vue from 'vue'import Router from 'vue-router'import Comment from '@/assets/view/comment.vue'Vue.use(Router)export default new Router... ...
分类:
其他好文 时间:
2020-06-28 22:17:40
阅读次数:
72