17 lines
284 B
Vue
17 lines
284 B
Vue
<script setup lang="ts">
|
|
import { themeChange } from 'theme-change';
|
|
import { onMounted } from 'vue';
|
|
import TxDialog from './components/TxDialog.vue';
|
|
|
|
onMounted(() => {
|
|
themeChange(false);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<RouterView />
|
|
<TxDialog />
|
|
</div>
|
|
</template>
|