mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
15 lines
294 B
JavaScript
15 lines
294 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
|
|
}
|
|
});
|
|
});
|