mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
|
function canUseDom() {
|
||
|
return !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
||
|
}
|
||
|
|
||
|
export default canUseDom;
|