Vue3 父组件传值给子组件+以及使用NModal组件

2024-01-11 17:52

本文主要是介绍Vue3 父组件传值给子组件+以及使用NModal组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言:我想实现表格中点击详情弹窗出一个表格展示该行详细信息。想着这个弹窗里用子组件展示。分担父组件下,怕代码过多。(使用NModal组件弹窗展示)

等我一波百度,嗯,实现方法挺多嘛,什么refs什么的,看似条条大路通罗马,我一试,一试一条死路/(ㄒoㄒ)/~~,最后也没用到refs(我还是更倾向于用这个,毕竟vue2都是这样),一直说找不到$refs,我还去了解了底层**getCurrentInstance()**逻辑,有些又说不提倡这种方式,这个方法能看到我定义的的ref方法名,但是里面是null,又或者我当时子组件不是用的<script setup lang="ts">而是用的export default defineComponent下的setup(){},所以我不信邪,我子组件又改成了export default 还是不行。最后使用的defineProps
在这里插入图片描述

父组件:重点在 <child-detail :id="childRef"/>import childDetail from './childDetail.vue',以及需要改变childRef值的方法detailsEvent()

<template><div class="content-box"><n-form label-placement="left"inlinelabel-width="120px"><n-form-item label="UserName/Email"><n-input v-model:value="usersListRef.name_email" type="text" @input="queryConditional":style="{ width: '420px' }" placeholder="Please enter username or email (At least three letters)" /></n-form-item><!-- <n-form-item label="Email"><n-input v-model:value="usersListRef.email" type="text" :style="{ width: '280px' }" placeholder="Please enter email" /></n-form-item> --></n-form><n-space vertical :size="12" ><n-data-table style="min-height:calc(100vh - 223px);":bordered="false":single-line="false":columns="columns":data="data":loading="loading":pagination="pagination"striped /></n-space></div><n-modalv-model:show="showModal"class="custom-card"preset="card":style="bodyStyle"title="Details"size="huge":bordered="false":segmented="segmented"><!-- <template #header-extra>!</template> --><child-detail :id="childRef"/><!-- <n-data-table:bordered="false":single-line="false":columns="columns":data="data":loading="loading":max-height="300":pagination="pagination"striped /> --><!-- <template #footer>尾部</template> --></n-modal>
</template><script lang="ts">
import {NInput, NSpace,NButton, NForm, NFormItem, NDataTable, NModal} from 'naive-ui'
import {ref, defineComponent, Ref, getCurrentInstance, onMounted } from 'vue'
import { apiTokenRequest } from "@/stores/modules/apiEncapsulation"
import type { PaidlicenseResult } from "../../api/classes";
import type { DataTableColumns } from 'naive-ui'
import type { DataResult } from "../../api/classes";
import { h } from 'vue'
import { NTag, NAvatar } from 'naive-ui'
import { createDiscreteApi} from "naive-ui"
import childDetail from './childDetail.vue'interface UsersListType {username : string | nullemail: string | nullname_email: string | nullpageSize: number
}interface UsersListAll {id: string
}export default defineComponent({components: {NInput,NSpace,NButton,NForm,NFormItem,NDataTable,NModal,PaidLicenseDetail// NSwitch
},setup(){const childRef = ref("")const proxy = getCurrentInstance()!.proxyconst {message} = createDiscreteApi(["message"])const { dialog } = createDiscreteApi(["dialog"])let showModal = ref(false)const loadingRef = ref(true)const imgUrl = new URL('../../assets/AccountCircleOutlined.svg', import.meta.url).hrefconst usersListRef = ref<UsersListType>({username: null,email: null,name_email: null, pageSize: 12})const usersListAllResult : Ref<UsersListAll[]> = ref([])const getPaidResultMethod =  async ()=>{await apiTokenRequest<UsersListAll[]>("url","get").then(function(res){if(res){console.log('list===', res);usersListAllResult.value = resloadingRef.value = falseconsole.log('usersListAllResult===>',  usersListAllResult.value);}})}getPaidResultMethod()const queryConditional =async () => {console.log('条件查询===>', res);}const createColumns = ({detailsLicenses,deleteItem,handleChange,statusRes}: {detailsLicenses: (rowData: UsersListAll) => void,deleteItem: (rowData: UsersListAll) => void,handleChange: (rowData: UsersListAll) => void,statusRes: (status: number) => boolean,}): DataTableColumns<UsersListAll> => {return [{title: 'Name',key: 'name'},{title: 'Avatar',key: 'headerUrl',width:"120px",render (row) {return h(NAvatar,{style: {height:'50px',width:'50px',},color: '#fff',round:true,bordered: true,src:row.headerUrl ? row.headerUrl:imgUrl},)}},{title: 'Action',key: 'actions',width:"260px",render (row) {return [h(NButton,{size: 'small',type: "info",// quaternary: true,onClick: () => detailsLicenses(row)},{ default: () => 'Licenses' }),h( // 启、禁用NButton,{size: 'small',style: {marginLeft: "10px",width: "70px"},type: 'primary',// quaternary: true,onClick: () => handleChange(row)},{ default: () =>  row.status>0 ? 'Enable':'Disable' }),h( // 删除NButton,{size: 'small',style: {marginLeft: "10px",},type:"error",// quaternary: true,onClick: () => deleteItem(row)},{ default: () => 'Delete' }),]}}]}const detailsEvent = async (rowData:UsersListAll)=>{showModal.value = truechildRef.value= rowData.id}const deleteEvent = async (rowData:UsersListAll)=>{}const handleChangeEvent = async (rowData:UsersListAll)=>{}return{childRef,usersListRef,usersListAllResult,showModal,loading: loadingRef,queryConditional,data: usersListAllResult,columns: createColumns({detailsLicenses (rowData) {message.info('send mail to ' + rowData.name)detailsEvent(rowData)},deleteItem(rowData){deleteEvent(rowData)},handleChange(rowData){handleChangeEvent(rowData)}}),pagination: {pageSize: usersListRef.value.pageSize// pageSize: 2},bodyStyle: {width: '60vw',// height: '60vh'},segmented: {content: 'soft',// footer: 'soft'} as const,}}
})
</script><style scoped>
</style>

子组件:都是重点。

<template><n-data-table:bordered="false":single-line="false":data="detailsData":loading="loading":columns="childColumns":max-height="300":pagination="pagination"striped /> 1111111{{ props?.id }}
</template><script lang="ts">
import {NInput, NSpace,NButton, NForm, NFormItem, NDataTable, NModal} from 'naive-ui'
import { defineComponent, ref, Ref, defineProps, onMounted } from 'vue'
import { apiTokenRequest } from "@/stores/modules/apiEncapsulation"
import type { Result } from "../../api/classes";
import type { DataTableColumns } from 'naive-ui'export default defineComponent({components:{NDataTable},
})
</script><script setup lang="ts">const props = defineProps({id:{type: String,}})const pagination = ref( {pageSize: 10})const loading = ref(true)let childColumns :anyconst detailsData : Ref<PaidlicenseResult[]> = ref([])const getDetail= async (id:string|undefined)=>{await apiTokenRequest<Result[]>("url","get").then(function(res){if(res){console.log('details===', res);loading.value = falsedetailsData.value = reschildColumns  = columns()console.log('=====detailsData===', detailsData.value);}})}getDetail(props.id)const columns = () => {return [{title:'id',key: 'id'}]}
</script>

我原本想await 调用getDetail() 会报错。setup function returned a promise, but no <Suspense> boundary was found in the parent component tree. A component with async setup() must be nested in a <Suspense> in order to be rendered. ,想用await是数据还没请求完,表格列名又加载了(当时还没有使用childColumns = columns()),就会同时出现这些报错type check failed for prop "columns". Expected Array, got Function Unhandled error during execution of setup function还有Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at。后面我想着,那就等数据请求成功后再调用columns(),用childColumns 字段赋值给组件。

这篇关于Vue3 父组件传值给子组件+以及使用NModal组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/595221

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传