mirror of
https://github.com/certd/certd.git
synced 2026-08-03 03:41:38 +08:00
10 lines
185 B
Vue
10 lines
185 B
Vue
<template>
|
|
<router-view> </router-view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useSettingStore } from "../store/settings";
|
|
|
|
const settingsStore = useSettingStore();
|
|
</script>
|