Vue.component("user-selector", { props: ["v-user-id"], data: function () { let userId = this.vUserId if (userId == null) { userId = 0 } return { users: [], userId: userId } }, watch: { userId: function (v) { this.$emit("change", v) } }, template: `