mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 16:46:44 -06: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>
|