一:搭建項目css
1.框架html
在原有的基礎上vue
src:node
2.index.htmlgit
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <p>222</p> </div> </body> </html>
3.main.js程序員
// js的主要入口 console.log("ok") //導入vue import Vue from 'vue' //引入App.vue import app from './App.vue' //按需導入mint-mi下的Hearer import { Header } from 'mint-ui'; Vue.component(Header.name, Header); //導入mui的樣式 import './lib/mui/css/mui.min.css' //Vue實例新建 var vue = new Vue({ el:'#app', render:c=>c(app) })
4.App.jsapp
<template> <div class="app-container"> <!-- 頂部 Header 區域 --> <!-- 使用mint-ui --> <mt-header fixed title="程序員的項目"></mt-header> <!-- 中間的 路由 router-view 區域 --> <!-- 底部 Tabbar 區域 --> <nav class="mui-bar mui-bar-tab"> <a class="mui-tab-item mui-active" href="#tabbar"> <span class="mui-icon mui-icon-home"></span> <span class="mui-tab-label">首頁</span> </a> <a class="mui-tab-item" href="#tabbar-with-chat"> <span class="mui-icon mui-icon-email"> <span class="mui-badge">9</span> </span> <span class="mui-tab-label">消息</span> </a> <a class="mui-tab-item" href="#tabbar-with-contact"> <span class="mui-icon mui-icon-contact"></span> <span class="mui-tab-label">通信錄</span> </a> <a class="mui-tab-item" href="#tabbar-with-map"> <span class="mui-icon mui-icon-gear"></span> <span class="mui-tab-label">設置</span> </a> </nav> </div> </template> <script> </script> <style lang="scss" scoped> .app-container { padding-top: 40px; overflow-x: hidden; } </style>
5.效果框架
二:修改框架的其餘部分ide
1..gitignore測試
node_modules .idea .vscode .git
2.README.md
# 這是一個測試的項目 ## vue項目 ### CJ
3.拷貝一個Lincese
三:Git
1.初始化
2.添加項目
提交在本地了
3.