Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tjventurini/vuepress-plugin-zengarden-tags

Provides tags for your VuePress blog 🏷
https://github.com/tjventurini/vuepress-plugin-zengarden-tags

Last synced: 10 days ago
JSON representation

Provides tags for your VuePress blog 🏷

Awesome Lists containing this project

README

        

# VuePress Plugin Zengarden Tags

Provides tags for your VuePress blog 🏷

## Installation

```bash
npm i --save-dev vuepress-plugin-zengarden-tags
# or
yarn add -D vuepress-plugin-zengarden-tags
```

## Usage

Add the following to your `config.js` or `index.js` file.

```javascript
['zengarden-tags']
```

You should now have `this.$tags` available.

## Configuration

```javascript
['zengarden-tags', {
key: 'tags', // the frontmatter key to look for
path: '/tags/', // the path to publish the generated pages under
title: 'Tags', // the title of the generated page
tag: 'Layout', // layout for single tag page
tags: 'Layout' // layout for the tags overview page
}]
```