13 lines
220 B
Vue
13 lines
220 B
Vue
<template>
|
|
<div :class="{'nav-open': $sidebar.showSidebar}">
|
|
<notifications></notifications>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style lang="scss"></style>
|