nuxt-scenic-library
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Nuxt - Scenic - Library

NPM Version Static Badge NPM License

A simple library that contains customisable components to be used with the NuxtJS framework.

Features

  • Main Header is a responsive header that can adjust to the size of the user's screen.\

Quick Setup

Install the module to your Nuxt application with one command:

npm install nuxt-scenic-library # or use your favourite package manager

Next add the module to your nuxt.config.ts/js file:

export default defineNuxtConfig({
  compatibilityDate: '2024-04-03',
  devtools: { enabled: true },
  modules: ['nuxt-scenic-library']
})

Usage

Reactive Header

TO use the reactive header, in a Vue component/page add the following:

    <s-MainHeader
      site-logo="/logo.webp" // Or use site-name if no logo.
      font-color="text-sky-900"
      :page-links="[{linkName: 'Home', linkAddress: '/' }]"
    />

This will display the following header:

font-color needs to be in either the Tailwind text format: text-blue-400, or the hexadecimal value.

site-logo needs to be stored in the Public folder as the component uses NuxtImg to handle images.

background-color needs to be in either Tailwing bg format: bg-blue-200 Or a hexadecimal format.

page-links needs to be an array with objects that have properties linkName and linkAddress. linkAddress must be relative to the website unless external. I.E.:

const links = [
  {
    linkName: 'Home',
    linkAddress: '/',

  },
  {
    linkName: 'About',
    linkAddress: '/about'
  }
]

Issues

If you have any errors or issues please raise an issue here: https://github.com/BrendanFre/nuxt-scenic-library/issues

Contribution

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.2
    65
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.2
    65
  • 1.1.1
    68
  • 1.0.0
    70

Package Sidebar

Install

npm i nuxt-scenic-library

Weekly Downloads

203

Version

1.1.2

License

MIT

Unpacked Size

8.8 kB

Total Files

13

Last publish

Collaborators

  • bfreeman0