refactor: slot.vue to composition api #82

Manually merged
Johann150 merged 1 commit from refactor/slot into main 2022-08-25 08:36:45 +00:00

View file

@ -8,12 +8,10 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
});
<script lang="ts" setup>
function focus(): void {
window.focus();
}
</script>
<style lang="scss" scoped>