commit: bbf467ea4f179b5476ea4dbe4f722b0d804f4389
parent 87c82991d1b3003a5df24758ae73cbb4c1401cfb
Author: LinuxMercedes <LinuxMercedes@gmail.com>
Date: Tue, 11 Dec 2018 14:36:08 -0600
Merge pull request #503 from Ayase-252/eeeeeeeeeeeeeeeeeeeeeeee
Let Vue eeeeeeeeeeeee
Diffstat:
A | e.vue | 28 | ++++++++++++++++++++++++++++ |
1 file changed, 28 insertions(+), 0 deletions(-)
diff --git a/e.vue b/e.vue
@@ -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>
+