xiaomo

Results 34 comments of xiaomo

Maybe I think it will be this ```tsx // values is the selected values // renderValues: (values) => jsx or somehting {values.map(item) => item}} /> ``` Maybe I can do...

You can use the following method to avoid this problem ``` test group ```

Should be need to install this [app](https://github.com/apps/pkg-pr-new) before you can use

> Thanks! But I meant to have it on the userland more, as this is not complicated to implement (3 lines of code). On the other hand, to have it...

You can try using it like this first ```ts // vite.config.ts export default defineConfig({ // ...other build: { rollupOptions: { external: ['uno.css'] } } }) ``` https://stackblitz.com/edit/vitejs-vite-iubmde6p?file=vite.config.js

This problem can be avoided by judging whether ssr is used. or use ```html xxx ``` ```ts if (!import.meta.env.SSR) { } ```