如何在 Vue 中獲取 Document 對象?可以通過直接訪問全局變量 document 來獲得它。
示例代碼如下:
export default {
created () {
const doc = document;
console.log(`Document title: ${doc.title}`);
}
}
也可以在 Vue 實例中使用 $el 屬性來訪問 Document 對象。示例代碼如下:
export default {
created () {
const doc = this.$el.ownerDocument;
console.log(`Document title: ${doc.title}`);
}
}
同時,也可以在 Vue 組件中使用 $refs 屬性獲取 Document 對象。示例代碼如下:
export default {
created () {
const doc = this.$refs.myRef.ownerDocument;
console.log(`Document title: ${doc.title}`);
}
}
以上三種方法都能夠獲得 Document 對象,根據實際需求選擇使用即可。