我正在将vuefire @ next用于Firebase云,并在github上的usage页中说
// save a reference to the firestore database
// to access it in the future
const db = firebase.firestore()
new Vue({
data: {
todos: [],
currentTodo: null,
},
firestore: {
todos: db.collection('todos'),
currentTodo: db.collection('todos').doc('1'),
},
})
就像一个符咒,但我不需要doc('1'),但我想要this.$router.params.userID
。
但是我想我在生命周期中有些地方不对,因为在需要时没有定义变量。