15 lines
324 B
Vue
15 lines
324 B
Vue
|
<script setup>
|
||
|
import { NCarousel, NDivider, NMarquee, NPopselect } from 'naive-ui'
|
||
|
import { onUnmounted, ref, watch, onMounted, computed } from 'vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<header className="header">
|
||
|
375 termsOfUse
|
||
|
</header>
|
||
|
<main ref="main"></main>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
</style>
|