What does this mistake in vue mean?

I just added a common component alert when I reported such an error. I don"t know what it means.

clipboard.png

:

clipboard.png

alert component:

<template>
    <div class="alert">
        <div class="alert-warp">
            <div class="text">
                {{alertMsg}}
            </div>
        </div>
    </div>
</template>

<script>
import {mapState} from "vuex"
export default {
    data(){
        return {}
    },
    // vuex  getters 
    computed: mapState({
        alertMsg: state => state.com.alertMsg
    })
}
</script>

call

in APP.vue
<template>
    <div id="app">
        <v-toast v-show="showToast"></v-toast>
        <v-alert v-show="showAlert"></v-alert>
    </div>
</template>
<script>
import toast from "@/components/toast"
import alert from "@/components/alert"


import {mapGetters,mapActions} from "vuex"
export default {
  name:"App",
  comments:{
    "v-toast": toast,
    "v-alert": alert
  },
  data (){
    return {
      
    }
  }
}
</script>
Aug.18,2021

is components, not comments


looks like vue.use is right

.

then the save of eslint looks like indentation and ; , search for

< hr >

https://cn.eslint.org/docs/ru.

clipboard.png

https://cn.eslint.org/docs/ru...

clipboard.png

https://cn.eslint.org/docs/ru...

clipboard.png


// useuser
Vue.use(Vuex)

// eslint
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b43d11-2c6b6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b43d11-2c6b6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?