mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
17 lines
207 B
Vue
17 lines
207 B
Vue
<template>
|
|
<div>
|
|
<Base>
|
|
<nuxt />
|
|
</Base>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Base from '~/layouts/base.vue'
|
|
|
|
export default {
|
|
components: {
|
|
Base
|
|
}
|
|
}
|
|
</script>
|