摘要: 源码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>v-model结合select类型</title> </head> <body> <div id="app"> <!-- 选择一个--> <select 阅读全文
posted @ 2021-10-15 15:47 博客zhu虎康 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 预览: 源码: <div id="app"> <!--单选框--> <label for="agree"> <input type="checkbox" id="agree" v-model="isAgree">同意协议 </label> <h2>您选择的是{{isAgree}}</h2> <but 阅读全文
posted @ 2021-10-15 15:21 博客zhu虎康 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 预览: 源码: <div id="app"> <!--多选框--> <input type="checkbox" value="篮球" v-model="hobbies">篮球 <input type="checkbox" value="足球" v-model="hobbies">足球 <input 阅读全文
posted @ 2021-10-15 15:18 博客zhu虎康 阅读(177) 评论(0) 推荐(0) 编辑