VUE
Posted zss1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE相关的知识,希望对你有一定的参考价值。
参考资料:
一、vue+jquery
vue(IE9+)
二、vue全家桶:vue+ES6+vuerouter+less(sass或stylus)+vuex+webpack+……
通过用vue脚本架来开发项目
npm install -g @vue/cli
如果npm install安装一些依赖包慢,可以换成淘宝镜像:
npm config set registry https://registry.npm.taobao.org
禁用eslint代码检查:config->index.js 找一下 useEslint: true,改成false
真机测试: 打开vue脚本架 config->index.js 中的host:”localhost”改为 host: ‘0.0.0.0’
打包路径:打开vue脚本架 config->index.js 中的
build: {
// Template for index.html
index: path.resolve(__dirname, ‘../dist/index.html’),
// Paths
assetsRoot: path.resolve(__dirname, ‘../dist’),
assetsSubDirectory: ‘static’,
将 assetsPublicPath: ‘/’,改成assetsPublicPath: ‘./’
移动端H5页面高清多屏适配方案:
https://note.youdao.com/share/?id=8e3044287f1ab4822b3647cfa21c67e5&type=note#/
通常浏览器默认使用的字号:16px;
浏览器最小能设置12px号字
git工作流
1.Git flow
2.github flow:只一个长期分支,就是master
以上是关于VUE的主要内容,如果未能解决你的问题,请参考以下文章
vue3简介——升级Vue的版本 vue2.9.6升级到vue3.0——创建Vue3.0工程-——vue3_devtool开发者工具的下载安装