Replies (4)

NOT SURE HOW WE SHOULD HANDLE PUBLIC DISCUSSION OF THE BOARD REVIEW PROCESS OF SPECIFIC APPLICATIONS BUT I WILL SAY THAT I VOTED YES AND HAVE BEEN AN OUTSPOKEN SUPPORTER OF THE PROJECT FOR YEARS.
I know that you have been vocal at the podcast and was supporting them personally. You also can say that I do support Damus and Will personally but not sure that we should disclose such and such decisions that board makes. But something tells me inside that the Bitkey release and impact of Jack with his massive support and NVK on board with Ten31 invested in tells me different. But I might be wrong and I just gave you feedback how it’s can be seen from the outside.
Default avatar
anna 1 year ago
<template> <div> <h1>Add User</h1> <form @submit.prevent="addUser"> <input v-model="name" type="text" placeholder="Name"><br><br> <input v-model="email" type="email" placeholder="Email"><br><br> <button type="submit">Add User</button> </form> </div> </template> <script> export default { data() { return { name: '', email: '' } }, methods: { addUser() { this.$store.commit('addUser', {name: this.name,email:this.email}) this.$router.push('/users') } } } </script>