上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 38 下一页
摘要: 首先在table中 <a-table ...> <template #action="{ record }"> <span class="action"> <a>移除</a> </span> </template> </a-table> const columns = [{ title: '操作', 阅读全文
posted @ 2023-11-16 16:09 Felix_Openmind 阅读(96) 评论(0) 推荐(0) 编辑
摘要: function A() { return (<> This is A component </>) } function B() { let msg = useContext(MsgContext); return (<> This is B component:::: {msg} </>) } 阅读全文
posted @ 2023-11-05 16:46 Felix_Openmind 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 代码案例 function A({ onGetAName }) { const name = `> ${new Date().getTime()} <`; return ( <div> This is A component ! {/*箭头函数形式来调用事件函数*/} <button onClick 阅读全文
posted @ 2023-11-05 16:28 Felix_Openmind 阅读(19) 评论(0) 推荐(0) 编辑
摘要: import { useRouter } from 'vue-router' //首先在setup中定义 const router = useRouter() // 字符串 router.push('home') // 对象 router.push({ path: 'home' }) // 命名的路 阅读全文
posted @ 2023-11-03 17:26 Felix_Openmind 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 案例代码 const style = { active: { border: '1px solid red'; } } import {useState} from "react"; const tabs = [ { type: 'hot', text: '最热' }, { type: 'time' 阅读全文
posted @ 2023-10-31 23:30 Felix_Openmind 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 示例图 相关代码 <template> <div> <a-modal v-model:visible="props.uploadVisible" width="1300px" :footer="null" maskClosable @cancel="onCancelClick" > <div cla 阅读全文
posted @ 2023-10-23 17:10 Felix_Openmind 阅读(565) 评论(0) 推荐(0) 编辑
摘要: React基础 组件内部状态 组件内部状态也称之为局部状态,允许保存、修改和删除存储在组件内部的属性 使用ES6类组件可以在构造函数种初始化组件的状态,构造函数只会在组件初始化的时候调用一次 const list = [ { title: 'React', url: 'https://faceboo 阅读全文
posted @ 2023-10-07 16:08 Felix_Openmind 阅读(13) 评论(0) 推荐(0) 编辑
摘要: In brief > Foundation 1. Communication - Input - Output 2. Event handlers 3. Composition - Using React's children API - Passing a child as a prop - Hi 阅读全文
posted @ 2023-10-06 23:19 Felix_Openmind 阅读(17) 评论(0) 推荐(0) 编辑
摘要: React =》 构建用户界面的JS库,用户界面是由按钮、文本和图像等小的单元内容构建。 React可以组合成可重用、可嵌套的组件。 组件案例 function Profile() { return ( <img src='https://i.xxx.com/test.jpg' alt=''/> ) 阅读全文
posted @ 2023-09-19 16:09 Felix_Openmind 阅读(24) 评论(0) 推荐(0) 编辑
摘要: // ★ 最为推荐的一种创建ref的方式: createRef class ClassicalRef extends React.Component { /** * React.createRef调用后可以返回一个容器,这个容器可以存储被ref所标识的节点 * 该容器是专人专用的 * */ node 阅读全文
posted @ 2023-09-15 14:35 Felix_Openmind 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 38 下一页