fluentd-ui/app/javascript/packs/out_forward_setting.js
Kenji Okimoto c8f37e96b5
Move components under components directory
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-11-05 13:11:19 +09:00

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,
}
});
});