NuxtN
Nuxt2y ago
npy

definePageMeta isn't working in my TSX component

// pages/account/index.tsx
const AccountPage = defineComponent({
    setup() {
        definePageMeta({ layout: 'account' });
    },
    render() {
        return (
            <div>a</div>
        )
    }
});

export default AccountPage;


Is there another way to do this using TSX?
Was this page helpful?