main.vue 278 Bytes
Newer Older
godwithdh's avatar
godwithdh committed
1 2 3 4 5 6 7 8 9 10 11
<template>
  <div class="main">
    <v-app>
      <keep-alive>
        <router-view></router-view>
      </keep-alive>
    </v-app>
  </div>
</template>

<script>
godwithdh's avatar
godwithdh committed
12

godwithdh's avatar
godwithdh committed
13 14 15 16 17 18 19 20 21 22 23 24 25
export default {
  name: 'main',
  data () {
    return {

    }
  }
}
</script>

<style lang="less">
  
</style>