19 lines
395 B
Vue
19 lines
395 B
Vue
<script>
|
|
import { defineComponent } from "vue";
|
|
import PasswordInput from "./PasswordInput.vue";
|
|
import UserInput from "./user/UserInput.vue";
|
|
|
|
export default defineComponent({
|
|
components: { UserInput, PasswordInput }
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="block">
|
|
<user-input></user-input>
|
|
<password-input></password-input>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|