badl/frontend/src/App.vue

16 lines
402 B
Vue
Raw Normal View History

2023-02-22 11:13:06 +08:00
<script setup>
2023-02-23 21:43:58 +08:00
import { ref } from "vue";
2023-02-22 11:13:06 +08:00
import "bootstrap/dist/css/bootstrap.css";
2023-02-22 16:24:08 +08:00
import "bootstrap-icons/font/bootstrap-icons.css";
2023-02-23 11:08:38 +08:00
import AudioDownload from "./views/AudioDownload.vue";
2023-02-23 21:43:58 +08:00
import InputVideoNumber from "./views/InputVideoNumber.vue";
const stage = ref(0);
2023-02-22 11:13:06 +08:00
</script>
<template>
2023-02-23 21:43:58 +08:00
<InputVideoNumber v-if="stage == 0" @change-stage="stage++" />
<AudioDownload v-else />
2023-02-22 11:13:06 +08:00
</template>