shareページに"Misskeyへ"ボタンを設置

Resolve #10898
This commit is contained in:
tamaina 2023-05-26 05:18:01 +00:00
parent 8050f89d7e
commit eee1e74174
3 changed files with 11 additions and 8 deletions

View file

@ -16,7 +16,10 @@
class="_panel"
@posted="state = 'posted'"
/>
<MkButton v-else-if="state === 'posted'" primary :class="$style.close" @click="close()">{{ i18n.ts.close }}</MkButton>
<div v-else-if="state === 'posted'" class="_buttonsCenter">
<MkButton primary @click="close">{{ i18n.ts.close }}</MkButton>
<MkButton @click="goToMisskey">{{ i18n.ts.goToMisskey }}</MkButton>
</div>
</MkSpacer>
</MkStickyContainer>
</template>
@ -148,10 +151,14 @@ function close(): void {
// 100ms
window.setTimeout(() => {
mainRouter.push('/');
location.href = '/';
}, 100);
}
function goToMisskey(): void {
location.href = '/';
}
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
@ -161,9 +168,3 @@ definePageMetadata({
icon: 'ti ti-share',
});
</script>
<style lang="scss" module>
.close {
margin: 16px auto;
}
</style>