Frontend/pages/Lamiter_pages/index.vue

24 lines
323 B
Vue
Raw Permalink Normal View History

2025-01-19 15:20:49 +08:00
<template>
2025-01-21 19:18:28 +08:00
<div>lamiter 的首頁</div>
2025-01-19 15:20:49 +08:00
</template>
<script setup>
2025-01-21 19:18:28 +08:00
import { onMounted } from "vue";
const { $api_host } = useNuxtApp();
definePageMeta({
layout: "default", // 指定自定義的佈局名稱
});
function test() {
console.log($api_host);
}
//開機自啟
onMounted(() => {
test();
});
</script>