|
|
import app from './yoho-app';
|
|
|
import $ from 'yoho-jquery';
|
|
|
import qs from 'yoho-qs';
|
|
|
import fastClick from 'yoho-fastclick';
|
|
|
|
|
|
class Page {
|
|
|
constructor() {
|
|
|
fastClick.attach(document.body);
|
|
|
|
|
|
this.app = app;
|
|
|
this.qs = qs;
|
|
|
this.$event = $(document);
|
...
|
...
|
|