有時候使用npm i node-sass -D
裝不上,這時候,就必須使用 cnpm i node-sass -D
css
運行cnpm i vue -S
將vue安裝爲運行依賴;vue
運行cnpm i vue-loader vue-template-compiler -D
將解析轉換vue的包安裝爲開發依賴;node
運行cnpm i style-loader css-loader -D
將解析轉換CSS的包安裝爲開發依賴,由於.vue文件中會寫CSS樣式;webpack
在webpack.config.js
中,添加以下module
規則:git
module: {
rules: [
{ test: /\.css$/, use: ['style-loader', 'css-loader'] },
{ test: /\.vue$/, use: 'vue-loader' }
]
}
建立App.js
組件頁面:github
<template>
<!-- 注意:在 .vue 的組件中,template 中必須有且只有惟一的根元素進行包裹,通常都用 div 看成惟一的根元素 -->
<div>
<h1>這是APP組件 - {{msg}}</h1>
<h3>我是h3</h3>
</div>
</template>
<script>
// 注意:在 .vue 的組件中,經過 script 標籤來定義組件的行爲,須要使用 ES6 中提供的 export default 方式,導出一個vue實例對象
export default {
data() {
return {
msg: 'OK'
}
}
}
</script>
<style scoped>
h1 {
color: red;
}
</style>
建立main.js
入口文件:web
// 導入 Vue 組件
import Vue from 'vue'
// 導入 App組件
import App from './components/App.vue'
// 建立一個 Vue 實例,使用 render 函數,渲染指定的組件
var vm = new Vue({
el: '#app',
render: c => c(App)
});
在webpack.config.js
中添加resolve
屬性:vue-router
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
}
}
使用 export default
和 export
導出模塊中的成員; 對應ES5中的 module.exports
和 export
npm
使用 import ** from **
和 import '路徑'
還有 import {a, b} from '模塊標識'
導入其餘模塊sass
使用箭頭函數:(a, b)=> { return a-b; }
導入路由模塊:
import VueRouter from 'vue-router'
安裝路由模塊:
Vue.use(VueRouter);
導入須要展現的組件:
import login from './components/account/login.vue'
import register from './components/account/register.vue'
建立路由對象:
var router = new VueRouter({
routes: [
{ path: '/', redirect: '/login' },
{ path: '/login', component: login },
{ path: '/register', component: register }
]
});
將路由對象,掛載到 Vue 實例上:
var vm = new Vue({
el: '#app',
// render: c => { return c(App) }
render(c) {
return c(App);
},
router // 將路由對象,掛載到 Vue 實例上
});
改造App.vue組件,在 template 中,添加router-link
和router-view
:
<router-link to="/login">登陸</router-link>
<router-link to="/register">註冊</router-link>
<router-view></router-view>
樣式的scoped是經過css的屬性選擇器實現的
<style scoped>
div{
color:red;
}
</style>
導入全部MintUI組件:
import MintUI from 'mint-ui'
導入樣式表:
import 'mint-ui/lib/style.css'
在 vue 中使用 MintUI:
Vue.use(MintUI)
使用的例子:
<mt-button type="primary" size="large">primary</mt-button>
官網首頁不能使用npm下載,須要手動從GitHub下載
導入 MUI 的樣式表:
import '../lib/mui/css/mui.min.css'
在webpack.config.js
中添加新的loader規則:
{ test: /\.(png|jpg|gif|ttf)$/, use: 'url-loader' }
根據官方提供的文檔和example,嘗試使用相關的組件
點擊頭像 -> 修改資料 -> SSH公鑰 如何生成SSH公鑰
建立本身的空倉儲,使用 git config --global user.name "用戶名"
和 git config --global user.email ***@**.com
來全局配置提交時用戶的名稱和郵箱
使用 git init
在本地初始化項目
使用 touch README.md
和 touch .gitignore
來建立項目的說明文件和忽略文件;
使用 git add .
將全部文件託管到 git 中
使用 git commit -m "init project"
將項目進行本地提交
使用 git remote add origin 倉儲地址
將本地項目和遠程倉儲鏈接,並使用origin最爲遠程倉儲的別名
使用 git push -u origin master
將本地代碼push到倉儲中
頭部的固定導航欄使用 Mint-UI
的 Header
組件;
底部的頁籤使用 mui
的 tabbar
;
購物車的圖標,使用 icons-extra
中的 mui-icon-extra mui-icon-extra-cart
,同時,應該把其依賴的字體圖標文件 mui-icons-extra.ttf
,複製到 fonts
目錄下!
將底部的頁籤,改形成 router-link
來實現單頁面的切換;
Tab Bar 路由激活時候設置高亮的兩種方式:
全局設置樣式以下:
.router-link-active{
color:#007aff !important;
}
或者在 new VueRouter
的時候,經過 linkActiveClass
來指定高亮的類:
// 建立路由對象
var router = new VueRouter({
routes: [
{ path: '/', redirect: '/home' }
],
linkActiveClass: 'mui-active'
});
將 tabbar 改形成 router-link
形式,並指定每一個鏈接的 to
屬性;
在入口文件中導入須要展現的組件,並建立路由對象:
// 導入須要展現的組件
import Home from './components/home/home.vue'
import Member from './components/member/member.vue'
import Shopcar from './components/shopcar/shopcar.vue'
import Search from './components/search/search.vue'
// 建立路由對象
var router = new VueRouter({
routes: [
{ path: '/', redirect: '/home' },
{ path: '/home', component: Home },
{ path: '/member', component: Member },
{ path: '/shopcar', component: Shopcar },
{ path: '/search', component: Search }
],
linkActiveClass: 'mui-active'
});
假數據:
lunbo: [
'http://www.itcast.cn/images/slidead/BEIJING/2017440109442800.jpg',
'http://www.itcast.cn/images/slidead/BEIJING/2017511009514700.jpg',
'http://www.itcast.cn/images/slidead/BEIJING/2017421414422600.jpg'
]
引入輪播圖組件:
<!-- Mint-UI 輪播圖組件 -->
<div class="home-swipe">
<mt-swipe :auto="4000">
<mt-swipe-item v-for="(item, i) in lunbo" :key="i">
<img :src="item" alt="">
</mt-swipe-item>
</mt-swipe>
</div>
</div>
.vue
組件中使用vue-resource
獲取數據運行cnpm i vue-resource -S
安裝模塊
導入 vue-resource 組件
import VueResource from 'vue-resource'
在vue中使用 vue-resource 組件