KOSASIH / pi-nexus-autonomous-banking-network

Require a name property in Vue components JS-0720
Anti-pattern
Minor
1 occurrence in this check
17<script>
18import AccountCard from "../components/AccountCard.vue";
19
20export default {21  components: {22    AccountCard,23  },24  computed: {25    accounts() {26      return this.$store.state.account.accounts;27    },28  },29};30</script>