2-1 test 代码梳理
Posted edeny
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2-1 test 代码梳理相关的知识,希望对你有一定的参考价值。
config/index.js
proxyTable 解决前端跨域问题。
build
webpack配置文件
node_modules
依赖包
package.json
安装哪些项目包
static
存放一些静态文件
src
main.js 项目的入口文件
assets 一些静态文件
compoents 子项目写在这里
router 路由配置
第一个 message测试数据
App.vue
<template> <div id="app"> {{ message }} <!--message 定义直接调用--> <!-- <img src="./assets/logo.png">--> <!-- <router-view/>--> </div> </template> <script> export default { // name: ‘App‘, data(){ return{ message:‘--- hello word !---‘, } } } </script> <style> #app { font-family: ‘Avenir‘, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
以上是关于2-1 test 代码梳理的主要内容,如果未能解决你的问题,请参考以下文章