18 lines
368 B
Vue
18 lines
368 B
Vue
<template>
|
|
<pn-page-card>
|
|
<template #title>
|
|
<div class="col-grow">
|
|
{{$t('login__register')}}
|
|
</div>
|
|
</template>
|
|
<pn-scroll-list>
|
|
<account-helper :type />
|
|
</pn-scroll-list>
|
|
</pn-page-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import accountHelper from 'components/admin/accountHelper.vue'
|
|
const type = 'new'
|
|
</script>
|