fluentd-ui/app/javascript/packs/out_forward_setting.js
Kenji Okimoto a5300c022b
Add buffer section to out_forward form
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-20 15:19:33 +09:00

15 lines
303 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,
}
})
})