10 lines
174 B
Vue
10 lines
174 B
Vue
|
<template>
|
||
|
<div class="custom-page"></div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, watch, onMounted, computed } from 'vue';
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|