mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 11:39:16 +01:00
refactor: 🎨 Refactor notes, event system and timelines
This commit is contained in:
parent
7461478170
commit
0f214b6a17
18 changed files with 266 additions and 188 deletions
|
|
@ -47,7 +47,6 @@
|
|||
</ButtonsBase>
|
||||
</div>
|
||||
</aside>
|
||||
<ComposerModal :open="composerOpen" @close="composerOpen = false" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
|
@ -64,7 +63,6 @@ const timelines = ref([
|
|||
},
|
||||
]);
|
||||
|
||||
const composerOpen = ref(false);
|
||||
const loadingAuth = ref(false);
|
||||
|
||||
const appData = useAppData();
|
||||
|
|
@ -72,7 +70,7 @@ const tokenData = useTokenData();
|
|||
const client = useMegalodon();
|
||||
|
||||
const compose = () => {
|
||||
composerOpen.value = true;
|
||||
useEvent("composer:open");
|
||||
};
|
||||
|
||||
const signIn = async () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue