mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 01:07:09 +02:00
20 lines
372 B
JavaScript
20 lines
372 B
JavaScript
'use strict'
|
|
import 'lodash/lodash'
|
|
import 'popper.js/dist/popper'
|
|
import 'bootstrap/dist/js/bootstrap'
|
|
import OwnedPluginForm from './owned_plugin_form'
|
|
|
|
window.addEventListener('load', () => {
|
|
new Vue({
|
|
el: '#plugin-setting',
|
|
data: () => {
|
|
return {}
|
|
},
|
|
components: {
|
|
'owned-plugin-form': OwnedPluginForm
|
|
},
|
|
methods: {
|
|
}
|
|
})
|
|
})
|