練習vue cli3,主要是多頁面設定的部分,怕忘記紀錄一下
start
Vue CLI Document
1 2 3 4 5
| # 安裝 Vue Cli 3 npm install -g @vue/cli
# 建立新專案 vue create hello-world
|
多頁面設定
vue cli 3 使用 webpack 來處理,所以沿用 webpack 的 multi entry 設定方式即可
Vue 配置參考
Webpack 解析(Resolve)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| const path = require("path"); module.exports = { pages: { index: { entry: "src/pages/index/main.js", template: "public/index.html", filename: "index.html", title: "Index Page", chunks: ["chunk-vendors", "chunk-common", "index"] }, about: "src/pages/about/main.js" }, productionSourceMap: false, configureWebpack: { resolve: { alias: { components: path.resolve(__dirname, "src/components/") } } } };
|
Hot Module Reload (HMR)
透過 webpack 的監視設定來處理
1 2 3 4 5 6 7 8
| module.exports = { ... configureWebpack: { watchOptions: { poll: true } } }
|
BootStrap + Vue
OfficialWebSite
元件語法範例
1 2 3 4 5 6 7 8 9 10 11 12 13
| # 安裝,擇一使用 npm i vue bootstrap-vue bootstrap yarn add vue bootstrap-vue bootstrap
# 在 entry(通常預設為main.js) 註冊 BootStrapVue import Vue from 'vue' import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css' import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
|