This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/pages/index.vue

14 lines
271 B
Vue

<template>
<Homepage v-if="config.pronouns.enabled"/>
<Select v-else/>
</template>
<script>
import Homepage from '../routes/homepage';
import Select from '../routes/select';
export default {
components: { Homepage, Select },
}
</script>