Vue

Amplify Vue Development: Introducing Plus UI - Your Vue to Excellence

Vue Installation

Please find below installation guide for integrating the Plus UI component library into a Vue project using Vite:

1. Create a new Vue project using Vite:

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";

export default defineConfig({
  plugins: [
    vue({
      template: {
        compilerOptions: {
          // treat all tags with a dash as custom elements
          isCustomElement: (tag) => tag.includes("-"),
        },
      },
    }),
  ],
});

To learn more, please check how to use both Vue and Web Components.

2. Add Plus UI library to your component:

In your Vue component file, import the Plus UI library and its styles.

3. Start using Plus UI components:

Now, you can use Plus UI components in your Vue project. Simply include them in your templates as needed.

Get help

Plus UI is more than a library; it’s a community. Engage with fellow developers, share your Plus UI projects, and contribute to the library’s growth. Your insights, feedback, and contributions drive the evolution of Plus UI:

Last updated

Was this helpful?