Submit video number list

This commit is contained in:
zhbaor 2023-02-23 21:43:58 +08:00
parent 8783a91a65
commit 5d15b3c372
6 changed files with 155 additions and 6 deletions

View file

@ -1,9 +1,15 @@
<script setup>
import { ref } from "vue";
import "bootstrap/dist/css/bootstrap.css";
import "bootstrap-icons/font/bootstrap-icons.css";
import AudioDownload from "./views/AudioDownload.vue";
import InputVideoNumber from "./views/InputVideoNumber.vue";
const stage = ref(0);
</script>
<template>
<AudioDownload></AudioDownload>
<InputVideoNumber v-if="stage == 0" @change-stage="stage++" />
<AudioDownload v-else />
</template>