码迷,mamicode.com
首页 > 其他好文 > 详细

2-1 test 代码梳理

时间:2020-03-28 21:38:53      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:sse   安装   解决   定义   main   sed   view   hello   直接   

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 代码梳理

标签:sse   安装   解决   定义   main   sed   view   hello   直接   

原文地址:https://www.cnblogs.com/edeny/p/12588825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!