mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 13:01:01 +08:00
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
var path = require('path'),
|
|
Generator = require('../../generator');
|
|
|
|
module.exports = PageGenerator;
|
|
|
|
function PageGenerator(options) {
|
|
Generator.call(this, options);
|
|
this.directory = 'pages';
|
|
this.jsClassName += 'Page';
|
|
}
|
|
|
|
PageGenerator.prototype = Object.create(Generator.prototype);
|
|
|
|
|