mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-20 12:54:18 +00:00
22 lines
269 B
Vue
22 lines
269 B
Vue
<template>
|
|
<div class="main-layout">
|
|
<navbar/>
|
|
|
|
<div class="container mt-4">
|
|
<child/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '~/components/Navbar'
|
|
|
|
export default {
|
|
name: 'MainLayout',
|
|
|
|
components: {
|
|
Navbar
|
|
}
|
|
}
|
|
</script>
|