摘要: app.component('website',{ template:` <h2>JSPang.com</h2>` }) app.component('describe',{ template:` <h2>技术胖的博客</h2>` }) const app=Vue.createApp({ templ 阅读全文
posted @ 2021-05-05 22:38 熊大大001(前端开发) 阅读(86) 评论(0) 推荐(0)
摘要: $event是指当前触发的是什么事件(鼠标事件,键盘事件等) $event.target则指的是事件触发的目标,即哪一个元素触发了事件,这将直接获取该dom元素 <button @click="console.log($event)" name="哈哈">单击</button> 阅读全文
posted @ 2021-05-05 20:06 熊大大001(前端开发) 阅读(473) 评论(0) 推荐(0)
摘要: 最基本使用 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hel 阅读全文
posted @ 2021-05-05 19:44 熊大大001(前端开发) 阅读(128) 评论(0) 推荐(0)