js 写自定义类,怎么可以使用 new Customer.Create(),这种方式创建类?
现在的方式是:
custom.js
export class Stage {
constructor(name) {
this.name = name
}
Create(){
console.log(this.name)
}
}
text.vue
import { Stage } from '@/untils/custom.js'
const stage = new Stage("stageName")
假如:想改上面的代码为下面这样调用,怎么写?
const stage = new Stage.Create({
id: "stageName",
...
})
不要乱用,已经有
Stage.create
就不需要new
了。简单来说可以这样:
custom.js
然后使用的地方: