mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
24 lines
472 B
Vue
24 lines
472 B
Vue
<template>
|
|
<div>
|
|
<ds-input
|
|
v-model="linkUrl"
|
|
class="editor-menu-link-input"
|
|
placeholder="https://"
|
|
@blur.native.capture="hideLinkMenu()"
|
|
@keydown.native.esc.prevent="hideLinkMenu()"
|
|
@keydown.native.enter.prevent="setLinkUrl(editorCommand, linkUrl)"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['hideLinkMenu', 'setLinkUrl', 'editorCommand'],
|
|
data() {
|
|
return {
|
|
linkUrl: null,
|
|
}
|
|
},
|
|
}
|
|
</script>
|