You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
<script setup lang="ts">
|
|
const links = []
|
|
|
|
const toast = useToast()
|
|
|
|
const email = ref('')
|
|
const loading = ref(false)
|
|
|
|
function onSubmit() {
|
|
loading.value = true
|
|
|
|
setTimeout(() => {
|
|
toast.add({
|
|
title: 'Subscribed!',
|
|
description: 'You\'ve been subscribed to our newsletter.'
|
|
})
|
|
|
|
loading.value = false
|
|
}, 1000)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<UFooter>
|
|
<!-- <template #top>-->
|
|
<!-- <UFooterColumns :links="links">-->
|
|
<!-- <template #right>-->
|
|
<!-- <form @submit.prevent="onSubmit">-->
|
|
<!-- <UFormGroup-->
|
|
<!-- label="Subscribe to our newsletter"-->
|
|
<!-- :ui="{ container: 'mt-3' }"-->
|
|
<!-- >-->
|
|
<!-- <UInput-->
|
|
<!-- v-model="email"-->
|
|
<!-- type="email"-->
|
|
<!-- placeholder="Enter your email"-->
|
|
<!-- :ui="{ icon: { trailing: { pointer: '' } } }"-->
|
|
<!-- required-->
|
|
<!-- size="xl"-->
|
|
<!-- autocomplete="off"-->
|
|
<!-- class="max-w-sm"-->
|
|
<!-- >-->
|
|
<!-- <template #trailing>-->
|
|
<!-- <UButton-->
|
|
<!-- type="submit"-->
|
|
<!-- size="xs"-->
|
|
<!-- :label="loading ? 'Subscribing' : 'Subscribe'"-->
|
|
<!-- :loading="loading"-->
|
|
<!-- />-->
|
|
<!-- </template>-->
|
|
<!-- </UInput>-->
|
|
<!-- </UFormGroup>-->
|
|
<!-- </form>-->
|
|
<!-- </template>-->
|
|
<!-- </UFooterColumns>-->
|
|
<!-- </template>-->
|
|
|
|
<template #left>
|
|
<p class="text-gray-500 dark:text-gray-400 text-sm">
|
|
Copyright © {{ new Date().getFullYear() }}. 广西国昱数字科技有限公司 All rights reserved.
|
|
</p>
|
|
</template>
|
|
<template #right>
|
|
<a class="text-sm" href="https://beian.miit.gov.cn/" target="_blank">备案号:桂ICP备2024039720号-1</a>
|
|
<UColorModeButton size="sm" />
|
|
</template>
|
|
</UFooter>
|
|
</template>
|