创建vue-cli项目步骤:https://www.cnblogs.com/mapengfei247/p/11074429.html
其中改用npm install --global @vue/cli
@vue/cli v4官方中文文档: https://cli.vuejs.org/zh/guide/prototyping.html
离线创建项目步骤:
https://blog.csdn.net/XuM222222/article/details/85161178
https://gitee.com/wangwei135/vue-cli-templates.git
C:\Users\username\.vue-templates
并重命名为webpack,vue init --offline
,也就是vue init webpack project --offline
, 之后会自动创建project文件夹margin-top: 60px;
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
/*margin-top: 60px;*/ // 这一行代码删除掉,或者注释掉
}
https://gitee.com/username/projectName.git
git init
git status
git add .
git commit -m "第一次初始化"
git remote add origin https://gitee.com/username/projectName.git
git push -u origin master
推送到云端报错的解决方法: https://www.cnblogs.com/xiyin/p/7625293.html
还有一种简易的方法:先下载gitee仓库的空白代码,然后复制.git文件夹替换到项目中,再推送。
设置别名alis
https://www.cnblogs.com/xiaofenguo/p/7603086.html
设置完之后还需要重启项目。
默认@表示src
使用方法:安装 npm i element-ui -S
然后main.js中写入代码
// 引入el ui
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);
然后就可以直接使用了,例如在index.vue中写
就出现一个按钮。
更多组件见官网:https://element.eleme.cn/#/zh-CN/component/select
官网地址: https://mint-ui.github.io/#!/zh-cn
使用方法:安装npm install mint-ui -S
然后main.js写入
// 引入全部组件
// 引入mint-ui全部组件
import MintUI from 'mint-ui'
import 'mint-ui/lib/style.css'
Vue.use(MintUI)
scss是sass的高级版
安装教程: https://blog.csdn.net/zhouzuoluo/article/details/81010331
报错解决方法: https://www.cnblogs.com/blucesun/p/11463426.html
我的操作:
# 版本8可能会报错
cnpm install [email protected] --save-dev
cnpm install node-sass --sava-dev
然后配置 build/webpack.base.js中的module, rules下面添加:
{
test: /\.scss$/,
loaders: ['style', 'css', 'sass']
},
最后使用: