UNPKG
vue3-spinners-css
Version:
latest (1.3.3)
1.3.3
1.3.2
1.3.1
Spinners for Vue 3. with exports css
github.com/Hwacc/vue3-spinners.git
Hwacc/vue3-spinners
vue3-spinners-css
/
src
/
utils
/
plugin.ts
12 lines
(9 loc)
•
294 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{
Plugin
}
from
'vue'
;
import
*
as
spinnerComponents
from
'../spinners/index.js'
;
export
const
VueSpinnersPlugin
:
Plugin
= {
install
(
app
) {
for
(
const
SpinnerComponent
of
Object
.
values
(spinnerComponents)) { app.
component
(
SpinnerComponent
.
name
,
SpinnerComponent
); } }, };