Logo

GitLab

Sign in

tutorial / web-tutorial

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • web-tutorial
  • vue
  • src
  • App.vue
  • xn-talk
    9b68c6b7
    zhaoxing authored
    2018-01-12 10:54:14 +0800  
    Browse Code ยป
App.vue 336 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<template>
  <div id="app" class="app">
    <router-view></router-view>
  </div>
</template>

<script>
  export default {
    name: 'App',
    data() {
      return { };
    }
  };
</script>

<style scoped>
  .ul{
    padding: 10px;
    background: #fff;
  }
  li{
    float: left;
    padding: 10px;
    background: #fff;
  }
</style>