wip: refactor(client): migrate components to composition api

This commit is contained in:
syuilo
2022-01-15 17:58:35 +09:00
parent ffc07a08d7
commit 41e18aa993
5 changed files with 100 additions and 156 deletions

View File

@ -17,18 +17,12 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
<script lang="ts" setup>
import { } from 'vue';
import * as os from '@/os';
export default defineComponent({
data() {
return {
uploads: os.uploads,
zIndex: os.claimZIndex('high'),
};
},
});
const uploads = os.uploads;
const zIndex = os.claimZIndex('high');
</script>
<style lang="scss" scoped>