23 lines
330 B
Vue
23 lines
330 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">
|
||
|
768
|
||
|
</header>
|
||
|
<main ref="main">
|
||
|
|
||
|
</main>
|
||
|
<footer>
|
||
|
|
||
|
</footer>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|
||
|
|