fluentd-ui/app/javascript/packs/out_s3_setting.js
Kenji Okimoto 93e2acb316 Add separated setting view for AWS credentials
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-07-18 11:50:53 +09:00

15 lines
290 B
JavaScript

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