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.

27 lines
440 B

<script setup>
useHead({
title: '普達國際',
viewport: 'width=device-width, initial-scale=1, maximum-scale=1',
charset: 'utf-8',
meta: [
{ name: 'description', content: '普達國際,化工材料買賣' }
],
bodyAttrs: {
}
})
import useStore from '@/store';
const store = useStore();
store.getConfig();
</script>
<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>