mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-15 14:24:39 +00:00
38 lines
610 B
Vue
38 lines
610 B
Vue
<template>
|
|
<GenericCreateUpdatePage v-bind="config" />
|
|
</template>
|
|
|
|
<script>
|
|
import { GenericCreateUpdatePage } from '@/layout/components'
|
|
export default {
|
|
components: {
|
|
GenericCreateUpdatePage
|
|
},
|
|
data() {
|
|
return {
|
|
config: {
|
|
initial: {
|
|
},
|
|
url: '/api/v1/users/groups/',
|
|
fields: ['name', 'users', 'comment'],
|
|
fieldsMeta: {
|
|
users: {
|
|
el: {
|
|
value: [],
|
|
url: '/api/v1/users/users/'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
|
|
</style>
|