我试图在我的Vue.js项目中使用Typescript,但在设置变量类型时遇到了麻烦。我在这样的数据中声明可变词
const word: firebase.firestore.DocumentReference | null = null;
const state: CreatingGroupSteps = 0;
return {
isFormValid: false,
groupNameRules,
state,
word,
groupName: '',
show: false,
};
但是在方法中,当DocumentReference的值分配给变量词时,我从tslinter
http://prntscr.com/o4bi42中收到错误
看起来可变字的类型为null
,而不是DocumentReference | null
我该如何解决?
谢谢