slcing registrasi awal
This commit is contained in:
32
auth-code/components/authentication.vue
Normal file
32
auth-code/components/authentication.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<v-app id="inspire">
|
||||
<div class="hidden-md-and-up">
|
||||
<mobile-component></mobile-component>
|
||||
</div>
|
||||
<div class="hidden-md-and-down">
|
||||
<dekstop-component></dekstop-component>
|
||||
</div>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script type="module">
|
||||
import dekstop from './dekstop.vue';
|
||||
import mobile from './mobile.vue';
|
||||
export default {
|
||||
name: "authentication",
|
||||
components: {
|
||||
"dekstop-component": dekstop,
|
||||
"mobile-component": mobile,
|
||||
},
|
||||
mounted() {},
|
||||
data() {
|
||||
return {
|
||||
visible: false,
|
||||
};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user