Frontend/pages/index.vue

36 lines
1.2 KiB
Vue
Raw Normal View History

2025-01-19 14:16:50 +08:00
<template>
2025-01-19 15:20:49 +08:00
</template>
<script setup>
import { useHead } from '#app'
definePageMeta({
layout: false, // 禁用 layout
});
useHead({
title: 'Lamiter',
meta: [
{ charset: 'utf-8' },
{ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1, shrink-to-fit=no' },
{ name: 'description', content: '' },
{ name: 'author', content: '' }
],
link: [
{ rel: 'stylesheet', href: "https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" }, // 確保 `styles.css` 位於 public/css 資料夾中
{ rel: 'stylesheet', href: '/css/sb-admin-2.min.css' } ,
{ rel: 'stylesheet', href: '/vendor/fontawesome-free/css/all.min.css'}
],
script: [
//{ src: 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js', crossorigin: 'anonymous' },
{ src: "/vendor/jquery/jquery.min.js" },
{ src: "/vendor/bootstrap/js/bootstrap.bundle.min.js"},
{ src: "/vendor/jquery-easing/jquery.easing.min.js"},
{ src: "/js/sb-admin-2.min.js"}
]
})
</script>