Ai
1 Star 0 Fork 0

Arthas/Vue学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1 hellovue.html 531 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nodine 提交于 2020-10-03 10:16 +08:00 . 学习Vue
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title></title>
</head>
<body>
<h2 id="app">Hello {{message}} !</h2>
<script type="text/javascript">
var app=new Vue({
el:"#app",
data:{
message:'vue'
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/Artahs/vue-learning.git
git@gitee.com:Artahs/vue-learning.git
Artahs
vue-learning
Vue学习
master

搜索帮助