1、搭建項(xiàng)目框架
使用vue-cli 沒(méi)安裝的需要先安裝
npm intall -g vue-cli
使用vue-cli生成項(xiàng)目框架
vue init webpack-simple vue-movie
然后一路回車(chē)
接著 進(jìn)入項(xiàng)目目錄
cd vue-movie
然后安裝項(xiàng)目依賴包
cnpm install
沒(méi)安裝cnpm的先執(zhí)行這個(gè)命令
npm install -g cnpm --registry=https://registry.npm.taobao.org
接著 npm run dev
看到這個(gè)界面 說(shuō)明前面沒(méi)啥問(wèn)題了
2、安裝需要的依賴包
該項(xiàng)目需要用到vue-router bootstrap
所以先安裝這兩個(gè)包
cnpm install vue-router bootstrap -D
然后在 index.html 頁(yè)面引用下boostrap.css和另一個(gè)需要用到的css文件
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.css"> <link rel="stylesheet" href="http://v3.bootcss.com/examples/dashboard/dashboard.css">
3、編寫(xiě)代碼
App.vue
來(lái)到src目錄下的App.vue中添加下列代碼
網(wǎng)友評(píng)論