• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • js
  • guang
  • detail
  • view.js
  • view-base
    5580aaf6
    by 郭成尧
    2017-05-02 16:26:11 +0800  
    Browse Files
view.js 311 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * @Author: Targaryen
 * @Date: 2017-04-27 14:55:18
 * @Last Modified by: Targaryen
 * @Last Modified time: 2017-05-02 14:46:07
 */
'use strict';

import {View} from 'yoho-mvc';

class DetailView extends View {
    constructor() {
        super('#guangDetail');
    }
}

module.exports = {
    DetailView
};