Vue.component("ns-user-selector", { props: ["v-user-id"], data: function () { return {} }, methods: { change: function (userId) { this.$emit("change", userId) } }, template: `
` })