-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
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
MFM-347
Metadata
Metadata
Assignees
Labels
No labels