@advjs/gui
v0.0.7-beta.5
Published
GUI for ADV.JS Engine.
Downloads
731
Readme
@advjs/gui
GUI for ADV.JS Engine.
Usage
// common css
import '@advjs/gui/client/styles/index.scss'
Import Icon CSS
import '@advjs/gui/dist/icons.css'
// or
Or you also can import icons by TypeScript:
import { mountCssVarsRootStyle } from '@advjs/gui/client'
import { onMounted } from 'vue'
onMounted(() => {
mountCssVarsRootStyle()
})
Nuxt
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
// ...
'@advjs/gui/nuxt',
],
})