App.vue 335 Bytes
Newer Older
chenxl's avatar
chenxl committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div class="app-container" @contextmenu.prevent.stop="">
    <keep-alive>
      <router-view/>
    </keep-alive>
  </div>
</template>

<script setup lang="ts">
</script>

<style lang="stylus">
  @import "assets/iconfont/iconfont.css"
  #app
  .app-container
    width: 100%
    height: 100%
    position: relative
</style>