Resolve "Improve UX/UI of new room (with no remembered identity)"

This commit is contained in:
10G Meow 2022-05-11 14:08:45 +00:00 committed by N Pex
parent fa8edb2d24
commit df2bbacffc
17 changed files with 161 additions and 108 deletions

View file

@ -0,0 +1,12 @@
export default {
data() {
return {
rememberMe: false
}
},
methods: {
onRememberMe(val) {
this.$store.commit("setUseLocalStorage", val);
}
}
}