Skip to content

Latest commit

 

History

History
71 lines (52 loc) · 1.97 KB

README.md

File metadata and controls

71 lines (52 loc) · 1.97 KB
Logo

Puik Resolver

The PrestaShop UI Kit vue component resolver

Documentation

About The Project

Puik Resolver is a vue component resolver for unplugin-vue-components and unplugin-auto-import that will auto import components from the @prestashopcorp/puik-components

Prerequisites

  • Node.js LTS is required.
  • Vue 3
  • @prestashopcorp/puik-components

Installation

$ npm install -D unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver

# Yarn
$ yarn add unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver -D

# pnpm
$ pnpm install unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver -D

ℹ️ unplugin-auto-import is only used for the snackbar component at the moment if you don't need this component you can skip everything related to unplugin-auto-import

Usage

Add the following code to your vite.config.ts file

import { defineConfig } from 'vite'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import { PuikResolver } from '@prestashopcorp/puik-resolver'

export default defineConfig({
  plugins: [
    // ...
    Components({
      resolvers: [PuikResolver()],
    }),
    AutoImport({
      resolvers: [PuikResolver()],
    }),
  ],
})

Then you can use the components without importing them like that

<script setup></script>

<template>
  <PuikButton>Example button</PuikButton>
</template>

You can find out more about unplugin-vue-components and unplugin-auto-imports in their documentation