register.vue
308 Bytes
<template>
<div class="register_container">
<UserCommon>
<NafmHeader/>
</UserCommon>
</div>
</template>
<script>
import UserCommon from '@/components/UserCommon'
export default {
name: 'Register',
components: {
UserCommon
},
data() {
return {}
},
methods: {}
}
</script>