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