8 lines
84 B
JavaScript
8 lines
84 B
JavaScript
class Index {
|
|
test () {
|
|
console.log('test')
|
|
}
|
|
}
|
|
|
|
export default new Index()
|