mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 09:27:19 +08:00
14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
'use strict'
|
|
|
|
let Node = require('./node')
|
|
|
|
class Comment extends Node {
|
|
constructor (defaults) {
|
|
super(defaults)
|
|
this.type = 'comment'
|
|
}
|
|
}
|
|
|
|
module.exports = Comment
|
|
Comment.default = Comment
|