[Vuejs]-Vue3 update conditional provide

0👍

Any data that you provide are not automatically converted to a reactive data – you need to do it yourself

  1. provide a ref or reactive object that wraps the data retrieved from Firebase
  2. Use authentication state observer to update provided data

Leave a comment