Beginner vue,Cannot read property 'babel' of undefined

Code address

https://github.com/wohuifude1.

Favlist.vue

<template>
  <div v-for="n in 10"></div>
</template>

<script>
  export default {
    data () {
      return {
        msg: "Hello World!"
      }
    }
  }
</script>

<style>
  html{
    background: red;
  }
</style>

May.31,2021
  • Vue-router login status detection?

    there are three pages in total. By default, they point to the login page. After logging in, you can store client_id to cookie and global.CLIENT_ID . what I want to do is to check the login status. When the page jumps, check that global.CLIENT_ID or coo...

    Mar.13,2021
Menu