Frontend/pages/Lamiter_pages/index.vue
2025-01-21 19:18:28 +08:00

24 lines
323 B
Vue

<template>
<div>lamiter 的首頁</div>
</template>
<script setup>
import { onMounted } from "vue";
const { $api_host } = useNuxtApp();
definePageMeta({
layout: "default", // 指定自定義的佈局名稱
});
function test() {
console.log($api_host);
}
//開機自啟
onMounted(() => {
test();
});
</script>