1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00
FrankerFaceZ/src/modules/chat/actions/components/edit-image.vue

22 lines
423 B
Vue
Raw Normal View History

<template lang="html">
<div class="tw-flex tw-align-items-center">
<label for="edit_image">
{{ t('setting.actions.url', 'URL') }}
</label>
<input
id="edit_image"
v-model="value.image"
class="tw-border-radius-medium tw-font-size-6 tw-full-width ffz-input tw-pd-x-1 tw-pd-y-05 tw-mg-y-05"
@input="$emit('input', value)"
>
</div>
</template>
<script>
export default {
props: ['value']
}
</script>