一个简单的完整的示范
Posted miaomiaotab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个简单的完整的示范相关的知识,希望对你有一定的参考价值。
D:\\workspace\\xxx\\index.html 没动过
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>xxx</title> </head> <body> <div id="app"></div> <!-- built files will be auto injected --> </body> </html>
D:\\workspace\\xxx\\src\\main.js
import Vue from \'vue\' import App from \'./App\' import VueRouter from \'vue-router\' import Apple from \'@/components/Apple\' import Banana from \'@/components/Banana\' Vue.use(VueRouter) let router = new VueRouter({ routes: [ { path: \'/apple\', component: Apple }, { path: \'/banana\', component: Banana } ] }) /* eslint-disable no-new */ new Vue({ el: \'#app\', router, template: \'<App/>\', components: { App } })
D:\\workspace\\xxx\\src\\App.vue
<template> <div id="app"> <img src="./assets/logo.png"> <router-view/> </div> </template> <script> export default { name: \'App\' } </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>
D:\\workspace\\xxx\\src\\components\\Apple.vue
<template> <a >{{ msg }}</a> </template> <script> export default { name: \'Apple\', data () { return { msg: \'I am an apple\' } } } </script>
D:\\workspace\\xxx\\src\\components\\Banana.vue
<template> <a >{{ msg }}</a> </template> <script> export default { name: \'Banana\', data () { return { msg: \'I am a banana\' } } } </script>
效果
以上是关于一个简单的完整的示范的主要内容,如果未能解决你的问题,请参考以下文章
[新增EA003考勤系统演示片段]全程字幕-22套UML+Enterprise Architect建模示范视频
[字幕文本和截图]UML+Enterprise Architect建模示范视频EA011停车管理系统
VSCode自定义代码片段15——git命令操作一个完整流程