版权说明,本人尊重版权,本文是东拼西凑而来,如有侵权,联系我速删
开发环境:Ubuntu1604、VSCODE
-
安装VUE
建议参考,此处不表 https://blog.csdn.net/ysgjiangsu/article/details/89553888 -
新建工程试运行
说几点:
vue init webpack projectname
vue-router可以选择安装与不安装,我习惯在main中直接写路由,可能是现在还不是很复杂。后续路由多了,单独建路由文件是必要的
关于router安不安装导致的差异,可参考此文 https://blog.csdn.net/style_zyh/article/details/74321612
- 多组件
看一下整体目录,当然你可以说,一个路由一个vue组件。但是,有时候你在重复造轮子,因为有的组件可以共用。所以就带来一个页面包含多个组件的问题:
代码如下:(改自 https://blog.csdn.net/m0_37057454/article/details/82496974 )
import Vue from 'vue';
import Router from 'vue-router';
import Home from './components/HelloWorld';
import sidebar from './components/sidebar';
import about from './components/about';
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import App from './App.vue';
Vue.config.productionTip = false;
Vue.use(Router);
Vue.use(ElementUI);
// 1. 定义路由
// 每个路由应该映射一个组件。 其中"component" 可以是
// 通过 Vue.extend() 创建的组件构造器,
// 或者,只是一个组件配置对象。
const routes= [
{
path: '/',
name:'root',
components: {default:Home,sidebar},
},
{
path: '/about',
name:'about',
components: {default:about,sidebar},
},
];
// 2. 创建 router 实例,传入上面定义的 `routes` 配置
const router = new Router({
mode: 'history',
base: "http://localhost",
routes: routes,
});
// 3.通过render渲染主组件App
const render = h => h(App);
// 4. 创建和挂载根实例。
// 通过 router 配置参数注入路由,从而让整个应用都有路由功能
new Vue({
router,
render,
}).$mount('#app');
意思是,多个组件components包含一下就行
对应的App.vue这样写
<template>
<div id="app">
<router-view name="sidebar"/>
<router-view name="default"/>
</div>
</template>
也可以这样写:
<template>
<div id="app">
<router-view name="sidebar"/>
<router-view />
</div>
</template>
如果只有一个组件呢?那就是component,少个s
{
path: '/',
component: Home,
},
对应的App.vue这样写
<template>
<div id="app">
<router-view/>
</div>
</template>
- 引入element-ui
这里再说一下element-ui的使用
npm install element-ui -S
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)
这里提一下,npm命令,摘自 https://www.jianshu.com/p/2e7f3b69e51e ,侵删
npm install module_name -S
即 npm install module_name --save
写入dependencies
npm install module_name -D
即 npm install module_name --save-dev
写入devDependencies
npm install module_name -g
全局安装(命令行使用)
npm install module_name
本地安装(将安装包放在 ./node_modules
下)
dependencies与devDependencies区别
devDependencies 里面的插件只用于开发环境,不用于生产环境
dependencies 是需要发布到生产环境的
举个例子:
你开发一个前端项目,在项目中你需要使用gulp构建你的开发和本地运行环境,这时你就要放到dependencies里。
如果gulp是用来压缩代码,打包等需要的工具,程序实际运行的时候并不需要,所以放到dev里就ok了。
你写程序要用element-ui,生产环境运行项目时肯定要用到element-ui,这时element-ui就应该安装到dependencies中去。
这些依赖都可以在当前工程的package.json查询到,比如我的
"dependencies": {
"element-ui": "^2.8.2",
"vue": "^2.5.2",
"vue-router": "^3.0.6"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
- 运行效果
几个vue组件代码如下:
helloworld.vue
<template>
<div>
<div>I am not driving now,trust me</div>
<el-button @click="showAndChange" type="success" size="medium">圆角按钮</el-button>
<el-button type="danger" size="mini" round>{{m_text}}</el-button>
</div>
</template>
<script>
export default {
data(){
return {
m_text:3
}
},
methods:{
showAndChange: function(){
this.m_text = this.m_text + 1
}
}
}
</script>
about.vue
<template>
<div>
<img src="../assets/logo.png">
<div>I am a coder from ABT</div>
</div>
</template>