mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 10:53:09 +02:00
12 lines
136 B
Vue
12 lines
136 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
export default Vue.extend({
|
||
|
});
|
||
|
</script>
|