summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/dummy.vue
blob: 5634efc509b15d7c286b950d81291460407d17ae (plain)
1
2
3
4
5
6
7
8
9
10
11
<template>
<div>
	<slot></slot>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
});
</script>