标签: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>
标签:sse 安装 解决 定义 main sed view hello 直接
原文地址:https://www.cnblogs.com/edeny/p/12588825.html