youtube-download-service/resources/App.vue

17 lines
189 B
Vue
Raw Normal View History

2024-06-17 10:13:49 +03:00
<template>
<v-app>
<Main></Main>
</v-app>
</template>
<script>
import Main from "./views/Main.vue";
export default {
name: "App",
components: {Main}
}
</script>