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

16 lines
240 B
Vue
Raw Normal View History

2019-05-28 17:29:15 +02:00
<template>
<main class="main-section">
<router-view></router-view>
</main>
2019-05-28 17:29:15 +02:00
</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>