fluentd-ui/app/javascript/packs/out_forward_setting.js
Kenji Okimoto 4c6e34ef03
Use window.addEventListener instead of $(document).ready
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-10-03 13:16:05 +09:00

15 lines
322 B
JavaScript

"use strict";
import TransportConfig from "./transport_config";
import OwnedPluginForm from "./owned_plugin_form";
window.addEventListener("load", () => {
new Vue({
el: "#out-forward-setting",
components: {
"transport-config": TransportConfig,
"owned-plugin-form": OwnedPluginForm,
}
});
});