当前位置: 移动技术网 > IT编程>脚本编程>vue.js > vue-cli+webpack记事本项目创建

vue-cli+webpack记事本项目创建

2018年05月01日  | 移动技术网IT编程  | 我要评论

云霄县人才网,石家庄电视台民生关注,廊坊日报

vue-cli+webpack记事本项目使用的是vue-cli2.0里面的项目构建工具webpack

项目的准备工作:

1.了解vue2.0

2.了解一些es6

3.储备一些webpack知识

参照项目地址:

我们将会选择使用一些vue周边的库 vue-cli , vue-router , vue-resource , vuex

1.使用vue-cli创建项目

2.使用vue-router实现单页路由

3.用vuex管理我们的数据流

4.使用vue-resource请求我们的node服务端

5.使用.vue文件进行组件化的开发

ps:本文node v6.2.2 npm v3.9.5 vue v2.1.0 vue-router v2.0.3 vuex v2.0.0

最终我们将会构建出一个小demo,不废话,直接上图。

安装

1.我们将会使用webpack去为我们的模块打包,预处理,热加载。如果你对webpack不熟悉,它就是可以帮助我们把多个js文件打包为1个入口文件,并且可以达到按需加载。这就意味着,我们不用担心由于使用太多的组件,导致了过多的http请求,这是非常有益于产品体验的。但我们并不只是为了这个而使用webpack,我们需要用webpack去编译.vue文件,如果没有使用一个loader去转换我们.vue文件里的style、js和html,那么浏览器就无法识别。

2.模块热加载是webpack的一个非常碉堡的特性,将会为我们的单页应用带来极大的便利。

通常来说,当我们修改了代码刷新页面,那应用里的所有状态就都没有了。这对于开发一个单页应用来说是非常痛苦的,因为需要重新在跑一遍流程。如果有模块热加载,当你修改了代码,你的代码会直接修改,页面并不会刷新,所以状态也会被保留。

3.vue也为我们提供了css预处理,所以我们可以选择在.vue文件里写less或者sass去代替原生css。

4.我们过去通常需要使用npm下载一堆的依赖,但是现在我们可以选择vue-cli。这是一个vue生态系统中一个伟大创举。这意味着我们不需要手动构建我们的项目,而它就可以很快地为我们生成。

首先,安装vue-cli。(确保你有node和npm)

npm i -g vue-cli

然后创建一个webpack项目并且下载依赖

vue init webpack vue-tutorial

cd vue-tutorial

npm i

接着使用 npm run dev 在热加载中运行我们的应用

这一行命令代表着它会去找到 package.json 的 scripts 对象,执行 node bulid/dev-server.js 。在这文件里,配置了webpack,会让它去编译项目文件,并且运行服务器,我们在 localhost:8080 即可查看我们的应用。

这些都准备好后,我们需要为我们的路由、xhr请求、数据管理下载三个库,我们可以从vue的官网中找到他们。另外我们使用 bootstrap 作为我的ui库

npm i vue-resource vue-router vuex bootstrap --save

初始化(main.js)

查看我们的应用文件,我们可以在src目录下找到 app.vue 和 main.js 。 main.js将会作为我们应用的入口文件而 app.vue 会作为我们应用的初始化组件。先让我们来完善下 main.js

// src/main.js
import vue from 'vue'
import vuerouter from 'vue-router'
import vueresource from 'vue-resource'

import app from './app'
import home from './components/home'
import 'bootstrap/dist/css/bootstrap.css'

vue.use(vuerouter)
vue.use(vueresource)

const routes = [{
 path : '/',
 component : home
},{
 path : '/home',
 component : home
}];

const router = new vuerouter({
 routes
});

/* eslint-disable no-new */
// 实例化我们的vue
var app = new vue({
 el: '#app',
 router,
 ...app,
});

这有两个与1.0不同的地方

一、 vue-router 路由的参数由对象统一变为了数组要注意。还有则是实例化vue的el 参数已经不能设置 html 和 body 了,因为在 vue2 中是会替换我们指定的标签

二、我们必须在实例化vue的时候指定渲染什么组件,以前我们是通过路由来指定如router.start(app, '#app') ,而在vue2中则不需要了

可以发现我们在 main.js 里使用了两个组件 app.vue 和 home.vue ,稍后让我们具体实现它们的内容。

而我们的 只需要保留 <div id="app"></div> 即可,我们的vue在实例化时设置了 el : '#app' 所以会替换这标签,为我们 app 组件的内容

//
<div id="app"></div>

我们的初始化就到这结束了,接下来让我们开始创建组件。

创建首页组件

首先我们在app.vue里为我们的应用写个顶部导航。

// src/app.vue

<template>
 <div id="wrapper">
 <nav class="navbar navbar-default">
 <div class="container">
 <a class="navbar-brand" href="#" rel="external nofollow" >
 <i class="glyphicon glyphicon-time"></i>
 计划板
 </a>
 <ul class="nav navbar-nav">
 <li><router-link to="/home">首页</router-link></li>
 <li><router-link to="/time-entries">计划列表</router-link></li>
 </ul>
 </div>
 </nav>
 <div class="container">
 <div class="col-sm-3">
 
 </div>
 <div class="col-sm-9">
 <router-view></router-view>
 </div>
 </div>
 </div>
</template>

除了我们的 navbar 以外,我们还需要一个 .container 去放我们其余需要展示的信息。

并且在这里我们要放一个 router-view 标签, vue-router 的切换就是通过这个标签开始显现的。

在这有个与1.0不同的地方

以前我们可以直接通过写a标签 然后写v-link属性进行路由跳转,在vue2中改为了写<router-link> 标签再写对应属性(to)进行跳转

接着,我们需要创建一个 home.vue 作为我们的首页

// src/components/home.vue

<template>
 <div class="jumbotron">
 <h1>任务追踪</h1>
 <p>
 <strong>
 <router-link to="/time-entries">创建一个任务</router-link>
 </strong>
 </p>
 </div>
</template>

不出意外的话,你可以看见如下效果

创建侧边栏组件

目前我们首页左侧还有一块空白,我们需要它放下一个侧边栏去统计所有计划的总时间。

// src/app.vue

 //...

 <div class="container">
 <div class="col-sm-3">
 <sidebar></sidebar>
 </div>
 <div class="col-sm-9">
 <router-view></router-view>
 </div>
 </div>

 //...

<script>
 import sidebar from './components/sidebar.vue'

 export default {
 components: { 'sidebar': sidebar },
 }
</script>

在 sidebar.vue 我们需要通过store去获取总时间,我们的总时间是共享的数据

// src/components/sidebar.vue
<template>
 <div class="panel panel-default">
 <div class="panel-heading">
 <h1 class="text-center">已有时长</h1>
 </div>

 <div class="panel-body">
 <h1 class="text-center">{{ time }} 小时</h1>
 </div>

 </div>
</template>

<script>
 export default {
 computed: {
 time() {
 return this.$store.state.totaltime
 }
 }
 }
</script>

创建计划列表组件

然后我们需要去创建我们的时间跟踪列表。

// src/components/timeentries.vue

<template>
 <div>
 //`v-if`是vue的一个指令
 //`$route.path`是当前路由对象的路径,会被解析为绝对路径当
 //`$route.path !== '/time-entries/log-time'`为`true`是显示,`false`,为不显示。
 //to 路由跳转地址
 <router-link
 v-if="$route.path !== '/time-entries/log-time'"
 to="/time-entries/log-time"
 class="btn btn-primary">
 创建
 </router-link>

 <div v-if="$route.path === '/time-entries/log-time'">
 <h3>创建</h3>
 </div>

 <hr>

 <router-view></router-view>

 <div class="time-entries">
 <p v-if="!plans.length"><strong>还没有任何计划</strong></p>

 <div class="list-group">
 <--
 v-for循环,注意参数顺序为(item,index) in items
 -->
 <a class="list-group-item" v-for="(plan,index) in plans">
 <div class="row">
 <div class="col-sm-2 user-details">
 
 <--
 `:src`属性,这个是vue的属性绑定简写`v-bind`可以缩写为`:`
 比如a标签的`href`可以写为`:href`
 并且在vue的指令里就一定不要写插值表达式了(`:src={{xx}}`),vue自己会去解析
 -->
 
 <img :src="plan.avatar" class="avatar img-circle img-responsive" />
 <p class="text-center">
 <strong>
  {{ plan.name }}
 </strong>
 </p>
 </div>

 <div class="col-sm-2 text-center time-block">
 <h3 class="list-group-item-text total-time">
 <i class="glyphicon glyphicon-time"></i>
 {{ plan.totaltime }}
 </h3>
 <p class="label label-primary text-center">
 <i class="glyphicon glyphicon-calendar"></i>
 {{ plan.date }}
 </p>
 </div>

 <div class="col-sm-7 comment-section">
 <p>{{ plan.comment }}</p>
 </div>

 <div class="col-sm-1">
 <button
 class="btn btn-xs btn-danger delete-button"
 @click="deleteplan(index)">
 x
 </button>
 </div>

 </div>
 </a>

 </div>
 </div>
 </div>
</template>

关于template的解释,都写在一起了,再看看我们的 script

// src/components/timeentries.vue

<script>
 export default {
 name : 'timeentries',
 computed : {
 plans () {
 // 从store中取出数据
 return this.$store.state.list
 }
 },
 methods : {
 deleteplan(idx) {
 // 稍后再来说这里的方法
 // 减去总时间
 this.$store.dispatch('dectotaltime',this.plans[idx].totaltime)
 // 删除该计划
 this.$store.dispatch('deleteplan',idx)
 }
 }
 }
</script>

别忘了为我们的组件写上一些需要的样式

// src/components/timeentries.vue

<style>
 .avatar {
 height: 75px;
 margin: 0 auto;
 margin-top: 10px;
 margin-bottom: 10px;
 }
 .user-details {
 background-color: #f5f5f5;
 border-right: 1px solid #ddd;
 margin: -10px 0;
 }
 .time-block {
 padding: 10px;
 }
 .comment-section {
 padding: 20px;
 }
</style>

既然我们的数据是共享的,所以我们需要把数据存在 store 里

我们在src下创建个目录为 store

在 store 下分别创建4个js文件 actions.js , index.js , mutation-types.js , mutations.js

看名字也就知道这4个分别是做啥用的了,建议大家多阅读阅读 vuex 的文档,多姿势多动手实践,慢慢的也就能理解了。

// src/store/index.js
import vue from 'vue'
import vuex from 'vuex'

vue.use(vuex);

// 先写个假数据
const state = {
 totaltime: 0,
 list: [{
 name : '二哲',
 avatar : 'https://sfault-avatar.b0.upaiyun.com/147/223/147223148-573297d0913c5_huge256',
 date : '2016-12-25',
 totaltime : '6',
 comment : '12月25日完善,陪女朋友一起过圣诞节需要6个小时'
 }]
};

export default new vuex.store({
 state,
})

由于新增了页面和store 在我们的入口js文件里配置下

// src/main.js
import store from './store'
import timeentries from './components/timeentries.vue'
//...

const routes = [{
 path : '/',
 component : home
},{
 path : '/home',
 component : home
},{
 path : '/time-entries',
 component : timeentries,
}];

var app = new vue({
 el: '#app',
 router,
 store,
 ...app,
});

不出意外的话,你可以在 /time-entries 路由下看见这样的页面

通过 vue-devtools 我们可以发现我们的store已经构造好了并且成功从store获取了数据

创建任务组件

这个比较简单我们直接给出代码

// src/components/logtime.vue

<template>
 <div class="form-horizontal">
 <div class="form-group">
 <div class="col-sm-6">
 <label>日期</label>
 <input
 type="date"
 class="form-control"
 v-model="date"
 placeholder="date"
 />
 </div>
 <div class="col-sm-6">
 <label>时间</label>
 <input
 type="number"
 class="form-control"
 v-model="totaltime"
 placeholder="hours"
 />
 </div>
 </div>
 <div class="form-group">
 <div class="col-sm-12">
 <label>备注</label>
 <input
 type="text"
 class="form-control"
 v-model="comment"
 placeholder="comment"
 />
 </div>
 </div>
 <button class="btn btn-primary" @click="save()">保存</button>
 <router-link to="/time-entries" class="btn btn-danger">取消</router-link>
 <hr>
 </div>
</template>

<script>
 export default {
 name : 'logtime',
 data() {
 return {
 date : '',
 totaltime : '',
 comment : ''
 }
 },
 methods:{
 save() {
 const plan = {
 name : '二哲',
 image : 'https://sfault-avatar.b0.upaiyun.com/888/223/888223038-5646dbc28d530_huge256',
 date : this.date,
 totaltime : this.totaltime,
 comment : this.comment
 };
 this.$store.dispatch('saveplan', plan)
 this.$store.dispatch('addtotaltime', this.totaltime)
 this.$router.go(-1)
 }
 }
 }
</script>

这个组件很简单就3个input输入而已,然后就两个按钮,保存我们就把数据push进我们store的列表里

logtime 属于我们 timeentries 组件的一个子路由,所以我们依旧需要配置下我们的路由,并且利用webpack让它懒加载,减少我们首屏加载的流量

// src/main.js
//...
const routes = [{
 path : '/',
 component : home
},{
 path : '/home',
 component : home
},{
 path : '/time-entries',
 component : timeentries,
 children : [{
 path : 'log-time',
 // 懒加载
 component : resolve => require(['./components/logtime.vue'],resolve),
 }]
}];

//...

vuex部分

在vue2.0中废除了使用事件的方式进行通信,所以在小项目中我们可以使用event bus,其余最好都使用vuex,本文我们使用vuex来实现数据通信

相信你刚刚已经看见了我写了很多 this.$store.dispatch('saveplan', plan) 类似这样的代码,我们再次统一说明。

仔细思考一下,我们需要两个全局数据,一个为所有计划的总时间,一个是计划列表的数组。

src/store/index.js 没啥太多可介绍的,其实就是传入我们的 state , mutations, actions 来初始化我们的store。如果有需要的话我们还可能需要创建我们的 getter在本例中就不用了。

接着我们看 mutation-types.js ,既然想很明确了解数据,那就应该有什么样的操作看起,当然这也看个人口味哈

// src/store/mutation-types.js

// 增加总时间或者减少总时间
export const add_total_time = 'add_total_time';
export const dec_total_time = 'dec_total_time';

// 新增和删除一条计划
export const save_plan = 'save_plan';
export const delete_plan = 'delete_plan';
// src/store/mutations.js
import * as types from './mutation-types'

export default {
 // 增加总时间
 [types.add_total_time] (state, time) {
 state.totaltime = state.totaltime + time
 },
 // 减少总时间
 [types.dec_total_time] (state, time) {
 state.totaltime = state.totaltime - time
 },
 // 新增计划
 [types.save_plan] (state, plan) {
 // 设置默认值,未来我们可以做登入直接读取昵称和头像
 const avatar = 'https://sfault-avatar.b0.upaiyun.com/147/223/147223148-573297d0913c5_huge256';
 
 state.list.push(
 object.assign({ name: '二哲', avatar: avatar }, plan)
 )
 },
 // 删除某计划
 [types.delete_plan] (state, idx) {
 state.list.splice(idx, 1);
 }
};

最后对应看我们的 actions 就很明白了

// src/store/actions.js

import * as types from './mutation-types'

export default {
 addtotaltime({ commit }, time) {
 commit(types.add_total_time, time)
 },
 dectotaltime({ commit }, time) {
 commit(types.dec_total_time, time)
 },
 saveplan({ commit }, plan) {
 commit(types.save_plan, plan);
 },
 deleteplan({ commit }, plan) {
 commit(types.delete_plan, plan)
 }
};

我们的 actions 其实就是去触发事件和传入参数啦

加了这三个文件后我们的store终于完整了,更新下我们的代码

// src/store/index.js 完整代码

import vue from 'vue'
import vuex from 'vuex'
import mutations from './mutations'
import actions from './actions'

vue.use(vuex);

const state = {
 totaltime: 0,
 list: []
};

export default new vuex.store({
 state,
 mutations,
 actions
})

this.$store.dispatch('saveplan', plan) 当执行了这样的方法就会调用 actions.js 里的 saveplan 方法,而 saveplan 又会触发 mutations 里的 types.save_plan 最后修改数据视图更新

ps:在这有个技巧就是,在 mutations 里都是用大写下划线连接,而我们的 actions 里都用小写驼峰对应。

个人理解这其实就是一个发布订阅的模式

mutation-types 记录我们所有的事件名

mutations 注册我们各种数据变化的方法

actions 则可以编写异步的逻辑或者是一些逻辑,再去 commit
我们的事件

如果有 getter 我们可以把一些需要处理返回的数据放在这即可,不进行业务操作

最后别忘了在我们的 main.js 里使用我们的 store

// src/store/main.js

import store from './store'
// ...

var app = new vue({
 el: '#app',
 router,
 store,
 ...app,
});


开始体验下你自己的任务计划板吧!

最后

通过本文,我们可以学习到许多关于vue的特性。

1.了解了vue-cli脚手架

2.初步对webpack有了一些了解和认识

3.如何用.vue愉快的开发

4.使用vuex进行组件通信

5.路由(子路由)的应用

6.使用 vue-devtools 观察我们的数据

个人网站 :

github地址: https://github.com/meckodo/vu...

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网