admin管理员组文章数量:1345903
I am trying to access the child method in the parent ponent using vue3 and ref method. But it returns an error.
Uncaught TypeError: addNewPaper.value?.savePaper is not a function
Below is my code. Please guide me where i am wrong.
Child ponent
<script setup lang="ts">
import { useWindowScroll } from '@vueuse/core'
import { Notyf } from 'notyf'
import { puted, defineProps, reactive, ref } from 'vue'
import { papers } from '/@src/firebase/connections'
const panySize = ref('')
const businessType = ref('')
const productToDemo = ref('')
const date = ref(new Date())
const { y } = useWindowScroll()
const isStuck = puted(() => {
return y.value > 30
})
const initialState = reactive({
subject: '',
paper: '',
marks: '',
})
const notyf = new Notyf()
const props = defineProps({
subjects: { required: true },
})
const savePaper = () => {
papers
.add(initialState)
.then(() => {
notyf.success('Paper saved successfully')
})
.catch((err) => {
notyf.error('Something went wrong')
})
}
</script>
Parent ponent
const addNewPaper = ref()
const successSave = () => {
addNewPaper.value?.savePaper()
notyf.success('Your paper has been successfully created!')
}
<template #content>
<FormAddNewTopical ref="addNewPaper" :subjects="_subjects"></FormAddNewTopical>
</template>
Any solution appreciated!
I am trying to access the child method in the parent ponent using vue3 and ref method. But it returns an error.
Uncaught TypeError: addNewPaper.value?.savePaper is not a function
Below is my code. Please guide me where i am wrong.
Child ponent
<script setup lang="ts">
import { useWindowScroll } from '@vueuse/core'
import { Notyf } from 'notyf'
import { puted, defineProps, reactive, ref } from 'vue'
import { papers } from '/@src/firebase/connections'
const panySize = ref('')
const businessType = ref('')
const productToDemo = ref('')
const date = ref(new Date())
const { y } = useWindowScroll()
const isStuck = puted(() => {
return y.value > 30
})
const initialState = reactive({
subject: '',
paper: '',
marks: '',
})
const notyf = new Notyf()
const props = defineProps({
subjects: { required: true },
})
const savePaper = () => {
papers
.add(initialState)
.then(() => {
notyf.success('Paper saved successfully')
})
.catch((err) => {
notyf.error('Something went wrong')
})
}
</script>
Parent ponent
const addNewPaper = ref()
const successSave = () => {
addNewPaper.value?.savePaper()
notyf.success('Your paper has been successfully created!')
}
<template #content>
<FormAddNewTopical ref="addNewPaper" :subjects="_subjects"></FormAddNewTopical>
</template>
Any solution appreciated!
Share Improve this question asked Jun 12, 2022 at 7:11 Robin SinghRobin Singh 1,7963 gold badges19 silver badges45 bronze badges1 Answer
Reset to default 11Public members are supposed to be defined with defineExpose
with script setup
syntax:
defineExpose({ savePaper })
Or with ctx.expose
in setup function:
setup(props, ctx) {
...
ctx.expose({ savePaper })
...
版权声明:本文标题:javascript - How can i access child component method in parent component using ref in Vue3? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818284a2544322.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论