2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-05 16:42:30 +03:00
Files
vue-json-viewer/index.js
T
2018-09-17 06:19:37 +02:00

7 lines
162 B
JavaScript

import JsonView from './json-viewer';
const install = (Vue) => {
Vue.component('JsonViewer', JsonView);
}
export default Object.assign(JsonView, {install});