components/drive-window.vue

This commit is contained in:
tamaina 2022-01-11 15:49:17 +09:00
parent 961f9773c5
commit 145c5c4812
1 changed files with 9 additions and 25 deletions

View File

@ -12,33 +12,17 @@
</XWindow>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
<script lang="ts" setup>
import { } from 'vue';
import * as Misskey from 'misskey-js';
import XDrive from './drive.vue';
import XWindow from '@/components/ui/window.vue';
export default defineComponent({
components: {
XDrive,
XWindow,
},
defineProps<{
initialFolder?: Misskey.entities.DriveFolder;
}>();
props: {
initialFolder: {
type: Object,
required: false
},
},
emits: ['closed'],
data() {
return {
};
},
methods: {
}
});
defineEmits<{
(e: 'closed'): void;
}>();
</script>