git地址:https://git-scm.com/html
node.js地址:http://nodejs.cn/前端
項目目錄:vue
|-- build // 項目構建(webpack)相關代碼 | |-- build.js // 生產環境構建代碼 | |-- check-version.js // 檢查node、npm等版本 | |-- dev-client.js // 熱重載相關 | |-- dev-server.js // 構建本地服務器 | |-- utils.js // 構建工具相關 | |-- webpack.base.conf.js // webpack基礎配置 | |-- webpack.dev.conf.js // webpack開發環境配置 | |-- webpack.prod.conf.js // webpack生產環境配置 |-- config // 項目開發環境配置 | |-- dev.env.js // 開發環境變量 | |-- index.js // 項目一些配置變量 | |-- prod.env.js // 生產環境變量 | |-- test.env.js // 測試環境變量 |-- src // 源碼目錄 | |-- components // vue公共組件 | |-- store // vuex的狀態管理 | |-- App.vue // 頁面入口文件 | |-- main.js // 程序入口文件,加載各類公共組件 |-- static // 靜態文件,好比一些圖片,json數據等 | |-- data // 羣聊分析獲得的數據用於數據可視化 |-- .babelrc // ES6語法編譯配置 |-- .editorconfig // 定義代碼格式 |-- .gitignore // git上傳須要忽略的文件格式 |-- README.md // 項目說明 |-- favicon.ico |-- index.html // 入口頁面 |-- package.json // 項目基本信息
<template> <div> <h1>{{msg}}</h1> </div> </template> <script> export default { name: 'ComponentA', data(){ return{ msg:'這是組件A', } } } </script> <style scoped> h1{ color: red; } </style>
<template> <div> <h1>{{msg}}</h1> </div> </template> <script> export default { name: 'ComponentB', data(){ return{ msg:'這是組件B', } } } </script> <style scoped> h1{ color: yellow; } </style>
<template> <div> <h1>{{msg}}</h1> </div> </template> <script> export default { name: 'ComponentC', data(){ return{ msg:'這是組件C', } } } </script> <style scoped> h1{ color:blue; } </style>
import Vue from 'vue' import Router from 'vue-router' import Hi from '@/components/HiComponent' import A from '@/components/ComponentA' import B from '@/components/ComponentB' import C from '@/components/ComponentC' Vue.use(Router) export default new Router({ routes: [ { path: '/', name: 'hi', component: Hi, }, { path: '/a', name: 'A', component: A, }, { path: '/b', name:'B', component:B, }, { path:'/c', name:'C', component:C, } ] })
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>project_03</title> </head> <body> <div id="app"> <ul> <li> <a href="#/a">這是組件A</a> </li> <li><a href="#/b">這是組件B</a></li> <li><a href="#/c">這是組件C</a></li> </ul> <!--router-view主要是構建 SPA (單頁應用) 時,方便渲染你指定路由對應的組件。你能夠 router-view 當作是一個容器,它渲染的組件是你使用 vue-router 指定的。--> <router-view></router-view> </div> <!-- built files will be auto injected --> </body> </html>
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import router from './router' Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, components: {}, template: '' })