UNPKG
@lumenpink/vue3-fitty
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Fitty text wrapper for Vue 3
github.com/lumenpink/vue3-fitty
lumenpink/vue3-fitty
@lumenpink/vue3-fitty
/
src
/
components
/
index.ts
13 lines
(9 loc)
•
195 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Fitty
from
"./Fitty.vue"
;
import
{
Plugin
}
from
"vue"
;
const
plugin
:
Plugin
= {
install
(
app
) { app.
component
(
Fitty
.
name
,
Fitty
); }, };
export
{
Fitty
};
export
default
plugin;