UNPKG
pdfobject-vue
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Official PDFObject component for Vue 3
github.com/pipwerks/pdfobject-vue
pdfobject-vue
/
src
/
index.js
9 lines
(7 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
PDFObjectComponent
from
'./components/PDFObject.vue'
;
const
PDFObjectVuePlugin
= {
install
(
app
) { app.
component
(
'PdfObject'
,
PDFObjectComponent
); } };
export
default
PDFObjectVuePlugin
;