54465d36a7
* refactor(client): refactor page-editor elements to use Composition API * Apply review suggestions from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
35 lines
1 KiB
Vue
35 lines
1 KiB
Vue
<template>
|
|
<!-- eslint-disable vue/no-mutating-props -->
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
|
<template #header><i class="fas fa-bolt"></i> {{ $ts._pages.blocks.switch }}</template>
|
|
|
|
<section class="kjuadyyj">
|
|
<MkInput v-model="value.name"><template #prefix><i class="fas fa-magic"></i></template><template #label>{{ $ts._pages.blocks._switch.name }}</template></MkInput>
|
|
<MkInput v-model="value.text"><template #label>{{ $ts._pages.blocks._switch.text }}</template></MkInput>
|
|
<MkSwitch v-model="value.default"><span>{{ $ts._pages.blocks._switch.default }}</span></MkSwitch>
|
|
</section>
|
|
</XContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
/* eslint-disable vue/no-mutating-props */
|
|
import { } from 'vue';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkSwitch from '@/components/form/switch.vue';
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
withDefaults(defineProps<{
|
|
value: any
|
|
}>(), {
|
|
value: {
|
|
name: ''
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.kjuadyyj {
|
|
padding: 0 16px 16px 16px;
|
|
}
|
|
</style>
|