view.js
346 Bytes
/*
* @Author: Targaryen
* @Date: 2017-04-26 17:15:50
* @Last Modified by: Targaryen
* @Last Modified time: 2017-04-26 17:47:20
*/
'use strict';
import {View} from 'yoho-mvc';
class NavView extends View {
constructor() {
super('#guang-nav');
console.log('NavView', '------->');
}
}
module.exports = {
NavView
};