App.vue 240 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6
<template>
  <router-view />
</template>

<script lang="ts">
import { defineComponent } from 'vue';
hucy's avatar
hucy committed
7
import 'swiper/css';
hcyhuchaoyue's avatar
hcyhuchaoyue committed
8
import '@quasar/quasar-ui-qmediaplayer/src/index.sass';
hucy's avatar
hucy committed
9 10

export default defineComponent({
hucy's avatar
hucy committed
11 12
  name: 'App',
});
hucy's avatar
hucy committed
13
</script>