2
0
mirror of https://github.com/tenrok/vue-context.git synced 2026-06-12 03:32:23 +03:00

3.4 updates (#16)

This commit is contained in:
Randall Wilk
2019-04-03 20:26:45 -05:00
committed by GitHub
parent 924203f4f2
commit 9d5c9da356
12 changed files with 3839 additions and 4904 deletions
-24
View File
@@ -1,24 +0,0 @@
import Vue from 'vue';
import { VueContext } from '../../../dist/vue-context';
new Vue({
components: {
VueContext
},
data: {
items: []
},
mounted () {
for (let i = 0; i < 30; i++) {
this.items.push(`Row ${i + 1}`);
}
},
methods: {
onClick (data) {
alert(data);
},
},
}).$mount('#app');