This commit is contained in:
2019-03-07 10:24:29 +08:00
parent 6c8c683c31
commit e057d613b9
215 changed files with 70917 additions and 118 deletions

24
root/qtask/abc.html Normal file
View File

@@ -0,0 +1,24 @@
<div id="abc">
{{cfg.title}}
<button @click="abc">asf</button>
<button @click="abc">openDia</button>
</div>
<script>
var vm = new Vue({
el: "#abc",
data: {
cfg: {
title: "12"
}
},
methods: {
abc: function () {
console.log("abc");
}
}
});
</script>