UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

8 lines (4 loc) 179 B
import { createApp, createSSRApp } from 'vue'; const inSSR = typeof window === 'undefined'; const createVueApp = inSSR ? createSSRApp : createApp; export default createVueApp;