Skip to content

Commit

Permalink
docs: update unuse-ui version
Browse files Browse the repository at this point in the history
  • Loading branch information
JB AUBREE committed Oct 30, 2024
1 parent 3e096da commit 73b391e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@vue/tsconfig": "^0.5.1",
"typescript": "~5.5.4",
"unocss": "^0.63.6",
"unuse-ui": "^0.1.24",
"unuse-ui": "^0.2.1",
"vite": "^5.4.8",
"vue-tsc": "^2.1.6",
"vue-use-form-validation": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions playground/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { createApp } from 'vue'

import App from './App.vue'

import 'unuse-ui/dist/style.css'
import 'unuse-ui/dist/assets/style.css'
import 'uno.css'

createApp(App)
.use(UnuseUI)
.use(UnuseUI, { registerComponents: false })
.mount('#app')
9 changes: 9 additions & 0 deletions playground/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,13 @@ export default defineConfig({
Vue(),
Unocss(),
],
build: {
rollupOptions: {
output: {
manualChunks: {
'unuse-ui': ['unuse-ui'],
},
},
},
},
})
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 73b391e

Please sign in to comment.