前端跟我学Web 前端开发 vue+webpack项目实战开发

如何使用Vue-cli快速构建单页应用

2017-11-14  本文已影响100人  九旬大爷的梦

vue-cli 是一个官方发布 vue.js 项目脚手架,使用 vue-cli 可以快速创建 vue 项目,GitHub地址是:vue-cli github

vue-cli 模板使用:

  browserify - A full-featured Browserify +            vueify setup with hot-reload, linting & unit            testing.
  browserify-simple - A simple Browserify +            vueify setup for quick prototyping.
  pwa - PWA template for vue-cli based on t           he webpack template
  simple - The simplest possible Vue setup            in a single HTML file
  webpack - A full-featured Webpack + vue-l           oader setup with hot reload, linting, testing            & css extraction.
  webpack-simple - A simple Webpack + vue-l           oader setup for quick prototyping.
  vue init webpack-simple vue-cli-01

然后 一直回车 有作者信息和sass 描述等,N后继续回车

webpack-simple路由使用:

import Home from "./conpaoles/home.vue"
import User from "./conpaoles/user.vue"
//import 引入 自定名字 路径是‘href’
export default{
    // 暴露文件
    //出口文件
    routes:[
    {path:'/home',component:Home},
    {path:'/user',component:User}
]
}
<template>
    <h1>这是Home</h1>
</template>
<style></style>
<script></script>

About.vue文件内容是:

<template>
    <h1>这是About</h1>
</template>
<style></style>
<script></script>

style 和script 如不需要可不写

<template>
<div id="app">
   <h1>{{ msg }}</h1>
    <br>
    <router-link to='/home'>home</router-link>
    <router-link to='/user'>user</router-link>
    <div>
        <router-view></router-view>
    </div>
  </div>
</template>

<script>
export default {
  name: 'app',
  data () {
    return {
      msg: 'Welcome to Your Vue.js App'
    }
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

h1, h2 {
  font-weight: normal;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  display: inline-block;
  margin: 0 10px;
}

a {
  color: #42b983;
}
</style>
import Vue from 'vue'
import vueRouter from 'vue-router'
import App from './App.vue'
import routerConfig from './router.config.js'
//import:引入.自定义名字 from 来自 (路径)‘href’ 
Vue.use(vueRouter);
//暴露 vueRouter
// vue use(使用) (使用的名字)
const myRouter=new vueRouter(routerConfig)
//定义一个常量 
new Vue({
  el: '#app',
  render: h => h(App),
  router:myRouter
    //挂载到vue实例里
})

再次在文件中打开git bash here输入cnpm run dev开启虚拟服务器,会自动弹出浏览器界面.
Element UI 组件库 饿了么团队 提供的组件库
官网:element.eleme.io

上一篇下一篇

猜你喜欢

热点阅读