mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-02 16:04:08 +03:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
import JsonView from './json-viewer';
|
|
|
|
const install = (Vue) => {
|
|
Vue.components('JsonViewer', JsonView);
|
|
}
|
|
export default Object.assign(JsonView, {install});
|