Combination of bundling tools focusing on improving development experience when working with Vuestic UI
- Install package
npm i @vuestic/compiler@latest
- Add
vuestic
plugin to vite config.
vite.config.ts
or vite.config.js
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { vuestic } from '@vuestic/compiler/vite'
export default defineConfig({
plugins: [
vuestic(),
vue(),
],
})
Make sure to register vuestic plugin before
vue
Devtools designed for intuitive visual control over application with Vuestic components
Run vite project in dev mode Press ALT/Option + F12 in browser
- [x] Edit component props
- [x] Edit component slot content
- [] Add new slots
- [] Add new components
- [] Control layout
- [] Add event listeners
Build plugin that allows controlling CSS order
UNDER DEVELOPMENT
Adds TS global types for colors, icons, etc.