企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
Vue的模板 ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vue</title> <script src="https://creative.chat/resources/vue/vue-v2.6.12.js"></script> </head> <body> <div id="root"> </div> <script> new Vue({ el: "#root", template: '<h1>hello {{msg}}</h1>', data: { msg: "world" } }) </script> </body> </html> ```