50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<script lang="ts" setup>
|
|
// TODO @芋艿:后续合并到 diy-editor 里,并不是通用的;
|
|
import { ref, watch } from 'vue';
|
|
|
|
import AppLinkSelectDialog from './app-link-select-dialog.vue';
|
|
|
|
// APP 链接输入框
|
|
defineOptions({ name: 'AppLinkInput' });
|
|
// 定义属性
|
|
const props = defineProps({
|
|
// 当前选中的链接
|
|
modelValue: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
// setter
|
|
const emit = defineEmits<{
|
|
'update:modelValue': [link: string];
|
|
}>();
|
|
// 当前的链接
|
|
const appLink = ref('');
|
|
// 选择对话框
|
|
const dialogRef = ref();
|
|
// 处理打开对话框
|
|
const handleOpenDialog = () => dialogRef.value?.open(appLink.value);
|
|
// 处理 APP 链接选中
|
|
const handleLinkSelected = (link: string) => (appLink.value = link);
|
|
|
|
// getter
|
|
watch(
|
|
() => props.modelValue,
|
|
() => (appLink.value = props.modelValue),
|
|
{ immediate: true },
|
|
);
|
|
|
|
watch(
|
|
() => appLink.value,
|
|
() => emit('update:modelValue', appLink.value),
|
|
);
|
|
</script>
|
|
<template>
|
|
<el-input v-model="appLink" placeholder="输入或选择链接">
|
|
<template #append>
|
|
<el-button @click="handleOpenDialog">选择</el-button>
|
|
</template>
|
|
</el-input>
|
|
<AppLinkSelectDialog ref="dialogRef" @change="handleLinkSelected" />
|
|
</template>
|