19 lines
406 B
Vue
19 lines
406 B
Vue
<template>
|
|
|
|
<TextElement name="email2" label="Email" @change="onChange" />
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
const parsedName = ref({})
|
|
const onChange = (newValue, oldValue, el$) => {
|
|
console.log(el$.$parent)
|
|
// console.log(option)
|
|
// const i = parseInt(el$.$parent.$parent.path.split('.')[1])
|
|
// parsedName.value[i] = parseName(el$.$parent.$parent.children$.text.value)
|
|
}
|
|
</script>
|
|
|
|
<style></style> |