官网地址 https://bootstrap-vue.js.org/
之所以不想用现成的桌面UI和移动UI是觉得现存的组件库真心丑,所以希望自己采用bootstrap4 能高度定制化, 这个方案暂时只适合桌面端,移动端控件真心还没有把握。
代码语言:javascript复制npm i -g vue-cli
# Initialize a bootstrap project in the directory 'my-project'
vue init bootstrap-vue/webpack my-project
# Change into the directory
cd my-project
# Install dependencies
npm i
# Fire up the dev server with HMR
npm run dev
当问到是否Use ESLint to lint your code? 我选择no 其他都选yes
如果启动服务的时候 8080端口被占用,导致启动失败,要么停止到现有的8080端口进程,要么到config/index.js文件下把8080端口改成一个没有被占用的端口 重新启动服务