UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

21 lines (15 loc) 269 B
import { // #ifndef VUE3 Vue, // #endif } from './vue'; export function getIsServer() { let result; // #ifndef VUE3 result = Vue.prototype.$isServer; // #endif // #ifdef VUE3 result = typeof window === 'undefined'; // #endif return result; }