Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Library Vue3 Support included (and updated build) (resolve: #62) #63

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Attention

> This is a fork of vue-spinkit that works in vuejs 3. All other documentation should be accurate HOWEVER install this version

```
npm install --save @ventralnet/vue3-spinkit
```

# vue-spinkit

> A collection of loading indicators animated with CSS for VueJS
Expand All @@ -23,17 +31,16 @@

```bash
# use yarn
yarn add vue-spinkit
yarn add @ventralnet/vue3-spinkit
# use npm
npm install --save vue-spinkit
npm install --save @ventralnet/vue3-spinkit
```

## How to use
```js
import Vue from 'vue'
import Spinner from 'vue-spinkit'
import Spinner from '@ventralnet/vue3-spinkit'

Vue.component('Spinner', Spinner)
// Register as a component in your component
```

## In file vue
Expand Down