2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-22 10:30:34 +03:00
Files
vue-select/docs/.vuepress/theme/layouts/SandboxLayout.vue
T
2019-04-28 14:14:56 -07:00

28 lines
575 B
Vue

<template>
<div
class="theme-container"
:class="pageClasses"
@touchstart="onTouchStart"
@touchend="onTouchEnd"
>
<Navbar v-if="shouldShowNavbar"/>
<sandbox/>
</div>
</template>
<script>
import Navbar from '@parent-theme/components/Navbar.vue';
import Layout from '@parent-theme/layouts/Layout.vue';
import Sandbox from '../components/Sandbox.vue';
export default {
name: 'SandboxLayout',
components: {Navbar, Sandbox},
computed: {
...Layout.computed,
},
methods: {
...Layout.methods,
},
};
</script>