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