2019-04-30 05:15:41 +02:00
|
|
|
<template>
|
2019-05-02 10:55:59 +02:00
|
|
|
<x-container @remove="() => $emit('remove')" :draggable="true">
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #header><fa :icon="faAlignLeft"/> {{ $t('_pages.blocks.textarea') }}</template>
|
2019-04-30 05:15:41 +02:00
|
|
|
|
|
|
|
<section class="ihymsbbe">
|
|
|
|
<textarea v-model="value.text"></textarea>
|
|
|
|
</section>
|
|
|
|
</x-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faAlignLeft } from '@fortawesome/free-solid-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
import i18n from '../../../i18n';
|
2019-04-30 05:15:41 +02:00
|
|
|
import XContainer from '../page-editor.container.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-01-29 20:37:25 +01:00
|
|
|
i18n,
|
2019-04-30 05:15:41 +02:00
|
|
|
|
|
|
|
components: {
|
|
|
|
XContainer
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
faAlignLeft,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.value.text == null) Vue.set(this.value, 'text', '');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ihymsbbe {
|
|
|
|
> textarea {
|
|
|
|
display: block;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 150px;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 16px;
|
|
|
|
background: transparent;
|
|
|
|
color: var(--fg);
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2019-04-30 05:15:41 +02:00
|
|
|
</style>
|