3963ed8ff7
* wip * tabun ok * better msg * oops * fix lint * Update gulpfile.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update src/client/scripts/set-i18n-contexts.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * refactor Co-authored-by: acid-chicken <root@acid-chicken.com> * ✨ * wip * fix lint * たぶんおk * fix flush * Translate Notification * remove console.log * fix * add notifications * remove san * wip * ok * ✌️ * Update src/prelude/array.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * wip * i18n refactor * Update init.ts * ✌️ Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
41 lines
1.2 KiB
Vue
41 lines
1.2 KiB
Vue
<template>
|
|
<x-container @remove="() => $emit('remove')" :draggable="true">
|
|
<template #header><fa :icon="faBolt"/> {{ $t('_pages.blocks.textareaInput') }}</template>
|
|
|
|
<section style="padding: 0 16px 16px 16px;">
|
|
<mk-input v-model="value.name"><template #prefix><fa :icon="faMagic"/></template><span>{{ $t('_pages.blocks._textareaInput.name') }}</span></mk-input>
|
|
<mk-input v-model="value.text"><span>{{ $t('_pages.blocks._textareaInput.text') }}</span></mk-input>
|
|
<mk-textarea v-model="value.default"><span>{{ $t('_pages.blocks._textareaInput.default') }}</span></mk-textarea>
|
|
</section>
|
|
</x-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faBolt, faMagic } from '@fortawesome/free-solid-svg-icons';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkTextarea from '../../../components/ui/textarea.vue';
|
|
import MkInput from '../../../components/ui/input.vue';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XContainer, MkTextarea, MkInput
|
|
},
|
|
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
faBolt, faMagic
|
|
};
|
|
},
|
|
|
|
created() {
|
|
if (this.value.name == null) Vue.set(this.value, 'name', '');
|
|
},
|
|
});
|
|
</script>
|