mirror of
https://github.com/romancm/gamebrary
synced 2025-01-04 15:28:44 +00:00
19 lines
256 B
Vue
19 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>
|