UNPKG
fu-media-image5
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
This is a UI component for a square rotating photo album
fu-media-image5
/
index.ts
11 lines
(8 loc)
•
242 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
App
,
Plugin
}
from
'vue'
;
import
MediaImage5
from
'./components/MediaImage5.vue'
const
FuMediaImage5
:
Plugin
= {
install
:
(
app: App
) =>
{ app.
component
(
'FuMediaImage5'
,
MediaImage5
) } }
export
default
FuMediaImage5