企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>3-1Vue实例</title> <script src="vue.js"></script> </head> <body> <div id="root"> <!-- <div v-on:click="handleClick">--> <div @click="handleClick"> {{message}} </div> <item></item> </div> <script> Vue.component('item',{ template:'<div>hello item</div>' }) var vm=new Vue({ el:'#root', data:{ message:'hello world' }, methods:{ handleClick(){ alert('hello') } } }); </script> </body> </html> ~~~