Skip to content

Spelling Mistake in Component Name #26

@MFM-347

Description

@MFM-347

Bro, I think you should recheck the spellings of whole code. Perhaps you have some more spelling mistakes in this code. It's

<template>
  <div id="app">
    <calcultor />
    <a href="https://github.com/itxshakil/vue-calculator-app">View Code</a>
  </div>
</template>

<script>
import Calculator from './components/Calculator.vue'

export default {
  name: 'app',
  components: {
    Calculator
  }
}
</script>

Corrected ->

<template>
  <div id="app">
    <Calculator />
    <a href="https://github.com/itxshakil/vue-calculator-app">View Code</a>
  </div>
</template>

<script>
import Calculator from './components/Calculator.vue'

export default {
  name: 'app',
  components: {
    Calculator
  }
}
</script>

Note I haven't added css section here

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions