diff --git a/src/components/utils/PageBase.js b/src/components/utils/PageBase.js index 2f0d466..ababbf6 100644 --- a/src/components/utils/PageBase.js +++ b/src/components/utils/PageBase.js @@ -1,4 +1,4 @@ -export default class PageBase { +class PageBase { constructor(path, vue) { this.path = path this.name = path.replace(/.*\\([^\\]+).vue/g, '$1') @@ -33,3 +33,5 @@ export default class PageBase { } } } + +module.exports = PageBase