mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
20 lines
380 B
JavaScript
20 lines
380 B
JavaScript
"use strict";
|
|
import "lodash/lodash";
|
|
import "popper.js/dist/popper";
|
|
import "bootstrap/dist/js/bootstrap";
|
|
import OwnedPluginForm from "./owned_plugin_form";
|
|
|
|
window.addEventListener("load", () => {
|
|
new Vue({
|
|
el: "#plugin-setting",
|
|
components: {
|
|
"owned-plugin-form": OwnedPluginForm
|
|
},
|
|
data: () => {
|
|
return {};
|
|
},
|
|
methods: {
|
|
}
|
|
});
|
|
});
|