12 lines
167 B
Vue
12 lines
167 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
defineComponent({ name: 'setting' });
|
|
</script>
|
|
|
|
<style>
|
|
</style> |