mirror of
https://github.com/fluent/fluentd-ui.git
synced 2026-01-28 10:31:27 +01:00
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
"use strict";
|
|
|
|
import TransportConfig from "./transport_config";
|
|
import OwnedPluginForm from "./owned_plugin_form";
|
|
|
|
$(document).ready(() => {
|
|
new Vue({
|
|
el: "#out-forward-setting",
|
|
components: {
|
|
"transport-config": TransportConfig,
|
|
"owned-plugin-form": OwnedPluginForm,
|
|
}
|
|
});
|
|
});
|