1.2.0 • Published 8 months ago

@huntersofbook/naive-ui-nuxt v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

alt text

Naive UI Nuxt 3 Module

@huntersofbook/naive-ui-nuxt npm

This module huntersofbook team created.

Naive UI integration for Nuxt

Features

  • Zero-config required
  • Auto-import component and imports
  • Tailwind CSS support

Setup

pnpm add @huntersofbook/naive-ui-nuxt
yarn add @huntersofbook/naive-ui-nuxt
npm add @huntersofbook/naive-ui-nuxt

Nuxt Config

export default defineNuxtConfig({
  modules: [
    '@huntersofbook/naive-ui-nuxt'
  ],

  // Optionally, specify global naive-ui config
  // Supports options that are normally set via 'n-config-provider'
  // https://www.naiveui.com/en-US/os-theme/docs/customize-theme
  naiveUI: {
    themeOverrides: {
      common: {
        primaryColor: '#ff0000',
        primaryColorHover: '#8b0000'
      }
    }
  }
})

Composables

<script setup lang="ts">
import { darkTheme } from 'naive-ui'
</script>

<template>
  <NConfigProvider :theme="darkTheme">
    <NGlobalStyle />
    <div>
      Nuxt module playground!
      <NButton>Default</NButton>
    </div>
  </NConfigProvider>
</template>

How to fix naive-ui nuxt conflict with tailwindcss Preflight style ?

The real reason is that tailwind has a preset default style of Preflight, which is friendly to new projects, but when we integrate tailwindcss into existing projects, it will cause style conflicts, we only need to disable this tailwindcss Preflight The style settings in your tailwind.config.js or tailwind.config.cjs

module.exports = {
  corePlugins: {
    preflight: false,
  }
}

Refer to tailwind css official website for explanation: https://tailwindcss.com/docs/preflight#disabling-preflight

💻 Development

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Stub module with pnpm dev:prepare
  • Run pnpm dev to start playground in development mode

Thanks

Thanks to @07akioni, this project is heavily inspired by naive-ui-nuxt-demo.

Thanks to @tobiasdiez, this project is inspired by some code structure. z

Sponsors

License

MIT License © 2022-PRESENT productdevbook

1.2.0

8 months ago

1.1.0

10 months ago

1.0.0

12 months ago

0.7.1

1 year ago

0.7.0

1 year ago

0.6.0

1 year ago

0.4.3-beta.9

2 years ago

0.5.0

1 year ago

0.5.1

1 year ago

0.4.3-beta.16

2 years ago

0.4.3-beta.15

2 years ago

0.4.3-beta.18

2 years ago

0.4.3-beta.17

2 years ago

0.4.5

2 years ago

0.4.4

2 years ago

0.4.3

2 years ago

0.3.9

2 years ago

0.3.10-beta.9

2 years ago

0.4.1-beta.0

2 years ago

0.3.10-beta.0

2 years ago

0.3.10-beta.14

2 years ago

0.3.10-beta.13

2 years ago

0.3.10-beta.12

2 years ago

0.3.10-beta.11

2 years ago

0.3.10-beta.10

2 years ago

0.3.10-beta.7

2 years ago

0.3.10-beta.8

2 years ago

0.3.10-beta.5

2 years ago

0.3.10-beta.6

2 years ago

0.3.10-beta.3

2 years ago

0.3.10-beta.4

2 years ago

0.3.10-beta.2

2 years ago

0.3.6

2 years ago

0.3.5

2 years ago

0.3.8

2 years ago

0.3.7

2 years ago

0.4.1

2 years ago

0.3.2

2 years ago

0.4.0

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.6

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago