mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-29 12:41:10 -04:00
16 lines
261 B
Vue
16 lines
261 B
Vue
<template>
|
|
<div class="site-wrapper h-full text-base">
|
|
<div class="container mx-auto">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script type="text/babel">
|
|
export default {
|
|
watch: {
|
|
$route: 'onRouteChange',
|
|
},
|
|
}
|
|
</script>
|