基于Vue和Element-Ui搭建项目的方法
首先要求事先安装node和npm
没有安装的自行百度或在论坛里面搜索!
提示:在命令行分别输入node -v(node和-v之间有个空格) 和npm -v(同样有个空格)可查看当前的node和npm版本
创建vue项目
1.创建一个项目文件夹,记住文件夹路径,如我的是f:\appcode
2.打开cmd命令通过cd指令进入到刚才创建的文件夹路径f:\appcode。
输入npm install -g cnpm –registry=https://registry.npm.taobao.org
安装淘宝镜像
3.继续输入npm install -g vue-cli
安装全局vue-cli,在命令行中输入vue,出来vue的信息说明安装成功。
4.输入vue init webpack test
安装 webpack 模板的新项目(test是我的项目名也是文件夹名,可根据实际修改好像不能有大写字母,如有大写字母会要求重新输入项目名,所以最好输入小写保证二者一致,方便操作)此时一路回车
5.输入cd test进入test文件夹输入 npm install
6.输入 npm run dev
运行项目,这个时候命令窗口给出将其在浏览器打开,至此vue项目创建完成
引入elementui
1.继续打开cmd 利用cd命令进如我们创建的项目文件夹f:\appcode\test
2.输入npm i element-ui -s
)安装elementui(注意空格和大写s)
3.安装完成后用webstorm或者hbuiderx打开我们的项目,找到src目录下的main.js文件将其修改为:也就新增了3条语句用于引用elementui
// the vue build version to load with the import command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import vue from ‘vue' import app from ‘./app' import router from ‘./router' import elementui from ‘element-ui' //new import ‘element-ui/lib/theme-chalk/index.css' //new vue.config.productiontip = false vue.use(elementui) //new /*eslint-disable no-new */ new vue({ el: ‘#app', router, components: { app }, template: ‘' })
4.此时elementui已经导入成功可以在src/components/hello.vue中引入一个按钮以查看样式是否成功
{{ msg }}
essential links
<el-button type="primary">主要按钮</el-button> //这个就是element提供的按钮
5.运行一下:cmd进入项目文件夹f:\appcode\test运行一下npm run dev
(webstorm 可以利用快捷键alt + f12快速执行npm run dev , hbuiderx 可点击运行到浏览器图标(有点像播放按钮的那个)快速执行npm run dev 这样就不需要cd指令进入项目文件夹拉) 6. 但是这个时候你会发现会报错误!!!! ## 解决
错误原因是vue对语法比较严格,而eslint是一个语法检查工具,对语法要求极其苛刻严格,于是就error了
解决之道是关闭eslint的语法规则,找到build/webpack.base.conf.js
将eslint相关语法注释或删除即可。
1.在test文件夹下找到build文件夹
2.选择build中的webpack.base.conf.js
文件进入修改,将其中…(config.dev.useeslint ? [createlintingrule()] : []),语句注释掉即可。
3.手残党也可直接拷贝下面内容替换webpack.base.conf.js中我内容:
‘use strict' const path = require(‘path') const utils = require('./utils') const config = require('…/config') const vueloaderconfig = require('./vue-loader.conf') function resolve (dir) { return path.join(__dirname, ‘…', dir) } const createlintingrule = () => ({ test: /.(js|vue)$/, loader: ‘eslint-loader', enforce: ‘pre', include: [resolve(‘src'), resolve(‘test')], options: { formatter: require(‘eslint-friendly-formatter'), emitwarning: !config.dev.showeslinterrorsinoverlay } }) module.exports = { context: path.resolve(__dirname, ‘…/'), entry: { app: ‘./src/main.js' }, output: { path: config.build.assetsroot, filename: ‘[name].js', publicpath: process.env.node_env === ‘production' ? config.build.assetspublicpath : config.dev.assetspublicpath }, resolve: { extensions: ['.js', ‘.vue', ‘.json'], alias: { 'vuekatex parse error: expected 'eof', got '}' at position 58: …ve('src'), }̲ }, module:…/, loader: ‘vue-loader', options: vueloaderconfig }, { test: /.jskatex parse error: expected 'eof', got '}' at position 144: …lient')] }̲, { …/, loader: ‘url-loader', options: { limit: 10000, name: utils.assetspath(‘img/[name].[hash:7].[ext]') } }, { test: /.(mp4|webm|ogg|mp3|wav|flac|aac)(?.*)?katex parse error: expected 'eof', got '}' at position 157: … } }̲, { …/, loader: ‘url-loader', options: { limit: 10000, name: utils.assetspath(‘fonts/[name].[hash:7].[ext]') } } ] }, node: { // prevent webpack from injecting useless setimmediate polyfill because vue // source contains it (although only uses it if it's native). setimmediate: false, // prevent webpack from injecting mocks to node native modules // that does not make sense for the client dgram: ‘empty', fs: ‘empty', net: ‘empty', tls: ‘empty', child_process: ‘empty' } }
4.再次运行一下:cmd进入项目文件夹f:\appcode\test运行一下npm run dev (webstorm 可以利用快捷键alt + f12快速执行npm run dev , hbuiderx 可点击运行到浏览器图标(有点像播放按钮的那个)快速执行npm run dev 这样就不需要cd指令进入项目文件夹拉),错误解决命令串口给出如下端口将其在浏览器打开。
5.可以看到屏幕中出现了我们添加的主要按钮,操作完成!
总结
以上所述是小编给大家介绍的基于vue和element-ui搭建项目的方法,希望对大家有所帮助