24 lines
323 B
Vue
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>
|