1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-11 03:04:08 +02:00
This commit is contained in:
syuilo
2020-07-24 20:14:08 +09:00
parent a02bd7061a
commit 8d049fd498
115 changed files with 539 additions and 539 deletions

View File

@@ -1,14 +1,14 @@
<template>
<div class="">
<portal to="icon"><fa :icon="faShareAlt"/></portal>
<portal to="title">{{ $t('share') }}</portal>
<portal to="title" v-t="'share'"></portal>
<section class="_card">
<div class="_title" v-if="title">{{ title }}</div>
<div class="_content">
<div>{{ text }}</div>
<mk-button @click="post()" v-if="!posted">{{ $t('post') }}</mk-button>
<mk-button primary @click="close()" v-else>{{ $t('close') }}</mk-button>
<mk-button @click="post()" v-if="!posted" v-t="'post'"></mk-button>
<mk-button primary @click="close()" v-else v-t="'close'"></mk-button>
</div>
<div class="_footer" v-if="url">{{ url }}</div>
</section>