实例:

模板语法

vue-router,vuex以及调式方法介绍

打包部署:

npm run build

Webpack 目前无论在求职还是工作中,使用越来越普及。而想要学懂,学会Webpack更绝非易事。

<template>
<div>
<p>标题</p>
<input type="text" v-model="title">
<p>内容</p>
<input type="text" v-model="content">
<div class="btn" @click="add()">添加</div>
</div>
</template> <script>
import store from '@/store'
export default {
name: "Add",
store,
data () {
return {
title: '',
content: ''
}
},
methods: {
add () {
store.commit('addItem',{
title: this.title,
content: this.content
})
this.title = ''
this.content = ''
this.$router.push('/home/list')
}
}
}
</script> <style scoped> </style> Add.vue
<template>
<div>
<router-view />
<ul class="footer">
<li class="icons"><router-link :to="{name: 'list'}">新闻列表</router-link></li>
<li class="icons"><router-link :to="{name: 'user'}">个人中心</router-link></li>
</ul>
</div> </template> <script>
export default {
name: "Home"
}
</script> <style scoped lang="scss">
li {
list-style: none;
}
.footer {
position: fixed;
width: 100%;
height: 60px;
line-height: 60px;
left: 0;
bottom: 0;
display: flex;
flex-flow: row nowrap;
justify-content: space-around;
}
.icons {
font-size: 16px;
flex: 1;
text-align: center;
border-top: 1px solid #42b983;
a {
color: #42b983;
display: block;
&.active {
color: #fff;
background: #42b983;
}
}
}
</style> Home.vue
<template>
<div>info</div>
</template> <script>
export default {
name: "Info"
}
</script> <style scoped> </style> Info.vue
<template>
<div>
<ul>
<li v-for="(item, index) in pageLists" :key="index">
{{item.title}}-{{item.content}}
</li>
</ul>
</div>
</template> <script>
import store from '@/store'
export default {
name: "List",
store,
computed: {
pageLists () {
return store.state.lists
}
}
}
</script> <style scoped> </style> List.vue
<template>
<div>
<form action="" v-if="!isReg">
<div>用户名:</div>
<input type="text" v-model="name">
<div>密码:</div>
<input type="password" v-model="password">
<div>
<button type="button" @click="login()">登录</button>
<button type="button" @click="reg()">注册</button>
</div>
</form>
<form action="" v-else>
<div>用户名:</div>
<input type="text" v-model="name">
<div>密码:</div>
<input type="password" v-model="password">
<div>再次输入密码:</div>
<input type="password" v-model="repeat">
<div>
<button type="button" @click="addUser()">确定</button>
<button type="button" @click="cancel()">取消</button>
</div>
</form>
</div>
</template> <script>
export default {
name: "Login",
data () {
return {
isReg: false,
name: '',
password: '',
repeat: ''
}
},
methods: {
login () {
if (localStorage.getItem("name") === this.name && localStorage.getItem("password") === this.password){
this.name = ''
this.password = ''
this.$router.push('/home/list')
}else{
alert('用户名密码不正确')
}
},
reg () {
this.isReg = true
},
cancel () {
this.isReg = false
},
addUser () {
if (this.password === this.repeat){
localStorage.setItem('name', this.name)
localStorage.setItem('password', this.password)
this.name = ''
this.password = ''
this.isReg = false
}else{
alert('两次密码输入不一致')
}
}
}
}
</script> <style scoped> </style> Login.vue
<template>
<div>user</div>
</template> <script>
export default {
name: "User"
}
</script> <style scoped> </style> User.vue
<template>
<div id="app">
<router-view/>
</div>
</template> <style lang="scss">
* {
padding: 0;
margin: 0;
}
</style> App.vue
import Vue from 'vue'
import Router from 'vue-router'
import Login from './views/Login.vue'
import Home from './views/Home.vue' Vue.use(Router) export default new Router({
mode: 'history',
base: process.env.BASE_URL,
linkActiveClass: 'active',
routes: [
{
path: '/',
name: 'login',
component: Login
},
{
path: '/home',
name: 'home',
component: Home,
children: [
{
path: 'list',
name: 'list',
component: () => import(/* webpackChunkName: "list" */ './views/List.vue')
},
{
path: 'user',
name: 'user',
component: () => import(/* webpackChunkName: "user" */ './views/User.vue')
},
]
},
{
path: '/add',
name: 'add',
component: () => import(/* webpackChunkName: "add" */ './views/Add.vue')
}
// {
// path: '/about',
// name: 'about',
// // route level code-splitting
// // this generates a separate chunk (about.[hash].js) for this route
// // which is lazy-loaded when the route is visited.
// component: () => import(/* webpackChunkName: "about" */ './views/About.vue')
// }
]
}) router.js
import Vue from 'vue'
import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({
state: {
lists: []
},
mutations: {
addItem (state, value) {
state.lists.push(value)
}
},
actions: { }
}) store.js

基础使用

认识Webpack

了解模块打包

多种Webpack安装方式及最佳方案

配置

命令行

核心知识

认识Loader

打包静态资源

plugins的概念及打包

SourceMap 应用与配置

WebpackDevServer

热模块更新

Babel 配置

进阶

Tree Shaking

Webpack中的分片打包

SplitChunksPlugin

懒加载和chunk

打包分析,Preloading, Prefetching

CSS 文件的代码分割

浏览器缓存

Shimming、环境变量使用方法

原理分析与扩展

自定义loader

自定义plugin

Webpack打包原理全分析

Webpack源码设计原理

全面性能优化

单页应用

多页应用

React

Vue

Typescript

ES6

PWA

EsLint

性能优化

使用过 Webpack ,做过

简单配置尝试

了解 JS 基础语法

使用过类似于 Webpack 这样的打包工具

对NodeJS有所理解

使用webpack

// vue.config.js
module.exports = {
configureWebpack: {
plugins: [
new MyAwesomeWebpackPlugin()
]
}
}

请点赞!因为你的鼓励是我写作的最大动力!

吹逼交流群:711613774

(23)打鸡儿教你Vue.js的更多相关文章

  1. (29)打鸡儿教你Vue.js

    web阅读器开发 epub格式的解析原理 Vue.js+epub.js实现一个简单的阅读器 实现阅读器的基础功能 字号选择,背景颜色 有上一页,下一页的功能 设置字号,切换主题,进度按钮 电子书目录 ...

  2. (26)打鸡儿教你Vue.js

    weex框架的使用 1.weex开发入门 2.weex开发环境搭建 3.掌握部分weex组件模块 4.了解一些vue基本常见语法 5.制作一个接近原生应用体验的app weex介绍 安装开发环境 We ...

  3. (22)打鸡儿教你Vue.js

    vue.js 单页面,多页面 Vue cli工具 复杂单页面应用Vue cli工具 交互设计,逻辑设计,接口设计 代码实现,线上测试 git clone,git int 创建分支,推送分支,合并分支 ...

  4. (21)打鸡儿教你Vue.js

    组件化思想: 组件化实现功能模块的复用 高执行效率 开发单页面复杂应用 组件状态管理(vuex) 多组件的混合使用 vue-router 代码规范 vue-router <template> ...

  5. (19)打鸡儿教你Vue.js

    了解vue2.x的核心技术 建立前端组件化的思想 常用的vue语法 vue-router,vuex,vue-cli 使用vue-cli工具 Vue框架常用知识点 vue核心技术 集成Vue 重点看,重 ...

  6. (18)打鸡儿教你Vue.js

    介绍一下怎么安装Vue.js vue.js Vue 不支持 IE8 及以下版本,因为 Vue 使用了 IE8 无法模拟的 ECMAScript 5 特性. Vue.js是一个渐进的,可逐步采用的Jav ...

  7. (17)打鸡儿教你Vue.js

    vue-router <a class="list-group-item" v-link="{ path: '/home'}">Home</a ...

  8. (15)打鸡儿教你Vue.js

    组件化vue.js 组件单向绑定 组件双向绑定 组件单次绑定 创建组件构造器 注册组件 使用组件 Vue.extend() Vue.component() 使用组件 <div id=" ...

  9. (13)打鸡儿教你Vue.js

    一小时复习 vue.js是一个JavaScriptmvvm库,是以数据驱动和组件化的思想构建的,相比angular.js,vue.js提供了更加简洁,更加容易理解的api,如果习惯了jquery操作d ...

  10. (12)打鸡儿教你Vue.js

    组件 语法格式如下: Vue.component(tagName, options) <tagName></tagName> <div id="app" ...

随机推荐

  1. DevOps 什么是 CI/CD?

    CI/CD 是一种通过在应用开发阶段引入自动化来频繁向客户交付应用的方法.CI/CD 的核心概念是持续集成.持续交付和持续部署.作为一个面向开发和运营团队的解决方案,CI/CD 主要针对在集成新代码时 ...

  2. 2.4_Database Interface ODBC数据库驱动程序类型(单层与多层)

    两大类:单层驱动程序和多层驱动程序 1.单层数据库驱动程序 早期的xBASE数据库系统的驱动程序就属于单层驱动程序. 单层驱动程序不仅要处理ODBC函数调用,还要解释执行SQL语句,执行数据库管理系统 ...

  3. centos7 设置 查看 开机 启动项

    1.查看开机自启项centos7自启项已不用chkconfig改为:systemctl list-unit-files左边是服务名称,右边是状态,enabled是开机启动,disabled是开机不启动 ...

  4. iOS - Xcode中从动态库剥离不需要的架构

    自从iOS 8发布以来,开发人员已经能够利用动态库对iOS开发的好处.对于一般开发,为所有需要的架构设置一个单一的动态库是非常好的,所以您可以在所有设备和iOS模拟器上运行,而无需更改任何东西.然而, ...

  5. MySql注释的写法

    每一种语言都有它的注释方式,代码量少的时候还可以,随着代码量越来越多,代码注释的重要性也越发凸显. 在mysql中主要有三种方式: 1.常用的方式,跟在css中那些注释一样 :/* 内容 */ /* ...

  6. sql 注入风险

    目录 sql 注入风险 什么是sql注入呢? 查看sql注入风险 如何避免 sql 注入风险 pymysql 简单规避注入风险示列 sql 注入风险 什么是sql注入呢? 参考百度 查看sql注入风险 ...

  7. SQL*Plus 与数据库的交互(SQL*Plus时什么)

    Oracle 的 SQL*Plus 是与数据库进行交互的客户端工具,在 SQL*Plus中,可以运行 SQL*Plus 命令与 SQL*Plus 语句.   SQL*Plus 时一个基于 C/S 两层 ...

  8. 如何导出ane所需的swc

    来源:http://blog.sina.com.cn/s/blog_6471e1bb01012ard.html 打包.ane文件的时候需要用到ActionScript的扩展库(swc文件),那么如何生 ...

  9. js 数组 去重 算法(转载)

    以下内容可能有重复部分,项目有用上,但还没来得急整理和验证. 一:https://www.cnblogs.com/jiayuexuan/p/7527055.html 1.遍历数组法 它是最简单的数组去 ...

  10. MySQL Replication--开启GTID模式下匿名事务异常

    错误环境: OS: CentOS release 6.5 (Final) MySQL: MySQL 5.7.19 主从参数配置: master_info_repository = TABLE rela ...