mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
"use strict";
|
|
|
|
import TransportConfig from "./components/transport_config";
|
|
import OwnedPluginForm from "./components/owned_plugin_form";
|
|
|
|
window.addEventListener("load", () => {
|
|
new Vue({
|
|
el: "#out-forward-setting",
|
|
components: {
|
|
"transport-config": TransportConfig,
|
|
"owned-plugin-form": OwnedPluginForm,
|
|
}
|
|
});
|
|
});
|