free-shipping.page.js
328 Bytes
import 'home/free-shipping.page.css';
import 'product/new-recommend/new-recommend';
import $ from 'yoho-jquery';
import Page from 'yoho-page';
class FreeShipping extends Page {
constructor() {
super();
this.selector = {};
this.init();
}
init() {}
}
$(() => {
new FreeShipping();
});