mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-07 07:10:27 +08:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
Vue.component("ns-user-selector", {
|
|
props: ["v-user-id"],
|
|
data: function () {
|
|
return {}
|
|
},
|
|
methods: {
|
|
change: function (userId) {
|
|
this.$emit("change", userId)
|
|
}
|
|
},
|
|
template: `<div>
|
|
<user-selector :v-user-id="vUserId" data-url="/ns/users/options" @change="change"></user-selector>
|
|
</div>`
|
|
}) |