Guest User

Untitled

a guest
Aug 14th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. "Uncaught ReferenceError: Vue is not defined"
  2.  
  3. new Vue({
  4. el: '#app',
  5. data: {
  6. val: "x"
  7. },
  8. ...
  9. shuffleDeck() {
  10. Vue.set(arg1, arg2, arg3) // A call to Vue.set happens here
  11. }
  12. ...
  13.  
  14. module.exports = {
  15. // ...
  16. shuffleDeck() {
  17. this.$set(arg1, arg2, arg3);
  18. }
  19. // ...
  20. };
Add Comment
Please, Sign In to add comment