我有以下模型:
import { Model } from '@vuex-orm/core'
export class User extends Model {
static entity = 'users'
static fields () {
return {
id: this.attr(null),
name: this.attr('')
}
}
}
当我尝试这样做时:
User.insert({
data: { id: 1, name: 'John' }
})
我收到以下错误:
Uncaught (in promise) TypeError: Class constructor User cannot be invoked without 'new'
知道有什么问题吗?这段代码来自文档,所以我有点困惑。