2
0
Fork 0
akkoma-fe-iceshrimp/src/components/settings_modal/helpers/text_setting.vue

20 lines
342 B
Vue

<template>
<span
v-if="matchesExpertLevel"
class="TextSetting"
>
<label :for="path">
<slot />
</label>
<textarea
:id="path"
class="text-input"
:disabled="disabled"
:value="state"
@change="update"
/>
{{ ' ' }}
</span>
</template>
<script src="./text_setting.js"></script>