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>
App.vue

 

以上是关于2-1 test 代码梳理的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

Node.js JavaScript 片段中的跳过代码

webstorm代码片段的创建

java代码在片段活动中不起作用

这两个代码片段之间有区别吗?如果有,那又如何? [复制]

将代码片段插入数据库并在 textarea 中以相同方式显示