-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTips.vue
52 lines (48 loc) · 1.55 KB
/
Tips.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<template>
<v-card v-show="showTips">
<v-card-title>
<h3 class="text-h5">Tips</h3>
</v-card-title>
<v-card-text>
<p>
<strong>Saipage</strong
>では<strong>「どどんとふのダイス」</strong>こと<strong>「BCDice」</strong>をブラウザから手軽に振ることができます。
「手軽にダイスを降る」に特化したため、このアプリケーションには<strong>「ルーム」がありません</strong>。
設定やダイスロールのログは全てブラウザに保存されます。
</p>
<p>
設定は右上にある
<strong
>歯車のアイコン<v-icon small class="tip-icon">mdi-cog</v-icon></strong
>
からできます。
</p>
<p>
よく使うコマンドをワンタッチで実行できるように<strong>「ショートカット機能」</strong>を用意しました。
コマンド入力欄の下にある
<strong
>追加ボタン<v-icon small class="tip-icon">mdi-plus</v-icon></strong
>
から好みに合わせてカスタマイズしてみてください。
</p>
</v-card-text>
</v-card>
</template>
<script lang="ts">
import Vue from "vue";
import Component from "vue-class-component";
@Component
export default class Tool extends Vue {
get showTips() {
return this.$store.state.settings.showTips;
}
}
</script>
<style lang="scss" scoped>
p {
color: rgba(0, 0, 0, 0.87);
}
.tip-icon {
vertical-align: text-bottom;
}
</style>