fluentd-ui/app/javascript/packs/out_s3_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
330 B
JavaScript

"use strict";
import OwnedPluginForm from "./components/owned_plugin_form";
import AwsCredential from "./components/aws_credential";
window.addEventListener("load", () => {
new Vue({
el: "#out-s3-setting",
components: {
"owned-plugin-form": OwnedPluginForm,
"aws-credential": AwsCredential
}
});
});