Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. computed: {
  2.  
  3. loading() {
  4. return this.$store.state.myCoolObject.loading
  5. },
  6.  
  7. }
  8.  
  9. watch: {
  10.  
  11. loading(newVal, oldVal) {
  12.  
  13. if(newVal == false) {
  14. console.log(this.$el)
  15. }
  16.  
  17. },
  18. }
  19.  
  20.  
  21. <template>
  22. <div v-if="!loading">
  23. Life, uh, finds a way.
  24. </div>
  25. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement