@nhn-dts/nhnprime
v1.4.3
Published
A preset for Primevue using Norsk Helsenett colors and design
Downloads
59
Keywords
Readme
Nhnprime
A extention of the Aura preset for Primevue in NHN colors.
Installation
This package is published publically to NPM in the nhn-dts organization.
npm install @nhn-dts/nhnprimeUsage
import { createApp } from "vue";
import "./style.css";
import App from "./App.vue";
import PrimeVue from "primevue/config";
import NhnPrime from "@nhn-sunn/nhnprime";
const app = createApp(App);
app.use(PrimeVue, { theme: { preset: NhnPrime } });
app.mount("#app");Development
There is a demo app that showcases all the different components in ./demo. This is a Vite + Vue.js application that uses the nhnprime preset.
To develop the nhnprime preset with live reload of changes, utilize the provided dev script. This watches the nhnprime package for changes, and rebuilds. Allowing the demo app to change its config on changes.
