addToDb(){
db.collection("orders").add({...this.$store.state.cart})
.then((docRef)=> {
this.status=""
this.deleteData();
this.$buefy.toast.open('Send')
})
.catch(function(error) {
});
},
使用vuex,我现在将数据添加到集合中,我还需要将服务器时间戳添加到数据库中。 谁能帮我,我不熟悉编程