mirror of
https://github.com/romancm/gamebrary
synced 2025-01-21 15:33:54 +00:00
20 lines
256 B
Vue
20 lines
256 B
Vue
|
<template lang="html">
|
||
|
<b-container>
|
||
|
<page-title
|
||
|
title="Dev tools"
|
||
|
/>
|
||
|
|
||
|
<dev-tools />
|
||
|
</b-container>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import DevTools from '@/components/DevTools';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
DevTools,
|
||
|
},
|
||
|
};
|
||
|
</script>
|