records.page.js 290 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import Vue from 'vue'; import records from 'me/records.vue'; import yoho from 'yoho'; import VueTouch from 'vue-touch'; VueTouch.config.swipe = { threshold: 10 }; yoho.ready(() => { new Vue({ el: '#records', components: { records } }); });