mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
* fix: small merge fixes * feat: initial setup wizard * fix: last few localization items * fix: lint * fix: bump version
16 lines
381 B
Vue
16 lines
381 B
Vue
<template>
|
|
<div class="p-8">
|
|
<AdminSourcesPage :token="token" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import AdminSourcesPage from "~/pages/admin/library/sources/index.vue";
|
|
|
|
const complete = defineModel<boolean>({ required: true });
|
|
// Only runs on component load, so it's fine
|
|
complete.value = true;
|
|
|
|
const { token } = defineProps<{ token: string }>();
|
|
</script>
|