我正在处理自己的项目,我进行了查询,它获取了总用户数并将其存储在p标签中。
<v-card class="mt-10 mb-5 users" max-width="344">
<v-card-text>
<p class="display-1 text--primary text-center">Users</p>
<div class="display-1 text--primary text-center">
<p id="users"></p>
</div>
</v-card-text>
</v-card>
created() {
// Get all user profile
db.collection("Profile").get().then((res) => {
document.getElementById('users').innerHTML = res.size
})
}
但是现在我得到了我没有改变任何东西的错误。
错误
Uncaught (in promise) TypeError: Cannot set property 'innerHTML' of null
开心每一天1111
MM们
相关分类