上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: public examination[] sortAll2()throws Exception { String sql="select count(*) from examination where grade <60"; PreparedStatement pre = connect.prepa 阅读全文
posted @ 2023-12-27 14:51 超爱彬宝同学 阅读(13) 评论(0) 推荐(0)
摘要: app.vue <template> <div class=""> <!-- 自定义指令全局 <input v-focus type="text" name="" id=""><br> 自定义指令局部 <input v-focus2 type="text" name="" id=""><br> -- 阅读全文
posted @ 2023-12-26 11:38 超爱彬宝同学 阅读(17) 评论(0) 推荐(0)
摘要: App.vue <template> <div class="table-case"> <MyTable :data="goods"> <template #TableHead> <tr> <th>编号</th> <th>名称</th> <th>图片</th> <th width="100px">标 阅读全文
posted @ 2023-12-25 17:44 超爱彬宝同学 阅读(14) 评论(0) 推荐(0)
摘要: package com.example.backendmanage.controller; import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.RandomUtil; import cn.hutool.core.util.Str 阅读全文
posted @ 2023-12-24 21:30 超爱彬宝同学 阅读(12) 评论(0) 推荐(0)
摘要: app.vue <template> <div class=""> <SchuRuKuang @Add="handleAdd"></SchuRuKuang> <LieBiaoZhanShi :list="list" @delOne="handledelOne"></LieBiaoZhanShi> < 阅读全文
posted @ 2023-12-23 12:37 超爱彬宝同学 阅读(27) 评论(0) 推荐(0)
摘要: <template> <div> <MyTable :data="list"> <template #default="obj"> <button @click="del(obj.row.id)">删除</button> </template> </MyTable> <MyTable :data=" 阅读全文
posted @ 2023-12-22 17:45 超爱彬宝同学 阅读(11) 评论(0) 推荐(0)
摘要: <template> <div class="grf"> this is grandpa <FatherComponent></FatherComponent> </div> </template> <script> import FatherComponent from './FatherComp 阅读全文
posted @ 2023-12-21 17:45 超爱彬宝同学 阅读(55) 评论(0) 推荐(0)
摘要: 1.安装vue-router 对应版本号为 233 344 使用以下命令 yarn add vue-router@3.6.5或者npm install vue-router@3.6.5 2.在main.js里面使用vue-router import Vue from 'vue' import App 阅读全文
posted @ 2023-12-20 20:21 超爱彬宝同学 阅读(41) 评论(0) 推荐(0)
摘要: props: 当不需要检查时,可以写成 props:['value'] 此时,不管传过来什么都不会检查,如果想要将数据进行检查,就可以将改成 1.类型验证 props:{ 'value' : Number } 此时会限制类型为Number的数据 2.如果需要更加完整的检查 props:{ 'valu 阅读全文
posted @ 2023-12-19 17:45 超爱彬宝同学 阅读(4) 评论(0) 推荐(0)
摘要: router:[ {path:'/',redirect:'/home'}, {path:'*',component:NotFound}, ] 阅读全文
posted @ 2023-12-18 11:16 超爱彬宝同学 阅读(29) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 15 下一页