mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-13 05:07:23 +08:00
* add method to create NetworkConfig from TomlConfigLoader * allow web export/import toml config file and gui edit toml config * Extract the configuration file dialog into a separate component and allow direct editing of the configuration file on the web
14 lines
307 B
Vue
14 lines
307 B
Vue
<script setup lang="ts">
|
|
import { getCurrentWindow } from '@tauri-apps/api/window'
|
|
import pkg from '~/../package.json'
|
|
|
|
onBeforeMount(async () => {
|
|
await getCurrentWindow().setTitle(`Easytier GUI: v${pkg.version}`)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Toast position="bottom-right" />
|
|
<RouterView />
|
|
</template>
|