Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sjoback/vue-components

Vue components used in several NuxtJS/Prismic projects during my employment at Compary AB.
https://github.com/sjoback/vue-components

nuxt vue vuejs

Last synced: about 9 hours ago
JSON representation

Vue components used in several NuxtJS/Prismic projects during my employment at Compary AB.

Awesome Lists containing this project

README

        

# vue-components

Package including some basic vue components used in several NuxtJS/Prismic projects.

## Getting Started

### Installing

Install the package

```
npm install @leetajz/vue-components
```

We don't use webpack or similar in the package, therefor we need to transpile it in Vue/Nuxt using the following in nuxt.config.js

```
build: {
...
transpile: [
'@leetajz/vue-components'
],
...
}
```

### Usage

Include components in the package by

```
import { PrismicImage } from '@leetajz/vue-components'
```