eeeee with vue

This commit is contained in:
Qingyu Deng 2018-12-11 00:05:25 +08:00
parent 72fabdef43
commit ba2f9317c3
No known key found for this signature in database
GPG Key ID: C7FCB06DAB45BEDE

28
e.vue Normal file
View File

@ -0,0 +1,28 @@
<template>
<div class="e">
{{ e }}
</div>
</template>
<script>
export default {
data () {
return {
e: 'e'
}
},
mounted () {
setInterval(() => {
this.e += 'e'
}, 1)
}
}
</script>
<style>
.e {
background: #eeeeee;
}
</style>