// 安装谷歌vue开发者工具插件
http://www.jb51.net/article/118557.htm
// 使用命令行
http://blog.csdn.net/sangjinchao/article/details/58064767
# 全局安装 vue-cli
$ npm install --global vue-cli
# 创建一个基于 webpack 模板的新项目
$ vue init webpack my-project
# 安装依赖,走你
$cdmy-project
$ npm install
$ npm run dev
如果浏览器打开之后,没有加载出页面,说明本地的8080 端口被占用,需要修改一下配置文件config/index.js
端口更改解释:1.将 build 的路径前缀修改为 ' ./ '(原本为 ' / '),是因为打包之后,外部引入 js 和 css 文件时,如果路
径以 ' / ' 开头,那么在本地是无法找到对应文件。所以如果需要在本地打开打包后的文件,
就得修改文件路径。
2.将端口号改为不常用的端口。
项目搭建完成2.引入elementUI.js
1.打开cmd,在当前目录中运行:npm i element-ui -S
2.src/main.js(红色的)
// 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'
import 'element-ui/lib/theme-default/index.css'
Vue.config.productionTip = false
/* eslint-disable no-new */
Vue.use(ElementUI)
new Vue({
el: '#app',
router,
template: '',
components: { App }
})
3.然后在.vue文件里就直接可以用了
例如:在src/components/Hello.vue做一下修改
修改vue组件
网友评论