zoukankan      html  css  js  c++  java
  • 一个简单的完整的示范

    D:workspacexxxindex.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:workspacexxxsrcmain.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:workspacexxxsrcApp.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:workspacexxxsrccomponentsApple.vue

    <template>
        <a >{{ msg }}</a>
    </template>
    
    <script>
    export default {
      name: 'Apple',
      data () {
        return {
          msg: 'I am an apple'
        }
      }
    }
    </script>
    

      

     D:workspacexxxsrccomponentsBanana.vue

    <template>
        <a >{{ msg }}</a>
    </template>
    
    <script>
    export default {
      name: 'Banana',
      data () {
        return {
          msg: 'I am a banana'
        }
      }
    }
    </script>
    

      

    效果

  • 相关阅读:
    伪类和伪元素的区别
    inline-block 空隙
    递归模版,绑定树
    lessJs
    怎样开发单页面app
    控件的开发接口的设计原理
    加载器中的预编
    linux加固脚本
    ogg同步服务配置复制和同步进程的开始文件及RBA
    tidb4.0修改参数全过程
  • 原文地址:https://www.cnblogs.com/tabCtrlShift/p/9162612.html
Copyright © 2011-2022 走看看