definePageMeta isn't working in my TSX component
Is there another way to do this using TSX?
// pages/account/index.tsx
const AccountPage = defineComponent({
setup() {
definePageMeta({ layout: 'account' });
},
render() {
return (
<div>a</div>
)
}
});
export default AccountPage;