2FAuth/resources/js/components/App.vue

17 lines
239 B
Vue
Raw Normal View History

2019-05-28 17:29:15 +02:00
<template>
2020-01-28 15:34:11 +01:00
<div class="main-section">
<router-view></router-view>
2019-05-28 17:29:15 +02:00
</div>
</template>
<script>
export default {
name: 'App',
2020-01-07 11:46:18 +01:00
2019-05-28 17:29:15 +02:00
data(){
return {
2020-01-06 21:05:03 +01:00
}
2019-05-28 17:29:15 +02:00
}
}
</script>