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

https://github.com/mismith/vue-primer

Interactive Vue3 components based on Primer CSS framework
https://github.com/mismith/vue-primer

Last synced: 5 months ago
JSON representation

Interactive Vue3 components based on Primer CSS framework

Awesome Lists containing this project

README

          

# vue-primer

Interactive Vue3 components based on [Primer CSS](https://primer.style/css/) framework

## Usage

1. `npm install @mismith/vue-primer @primer/css @primer/octicons`
2. In `App.vue`:
```html

@import '@primer/css/index.scss';
@import '@primer/octicons/index.scss';

```
3. In any Vue component files, e.g.:
```html

import { Button } from '@mismith/vue-primer'
// or
import Button from '@mismith/vue-primer/components/Button.vue'

```