```tsx // 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?