no longer manipulating prop. still can't get formatting to twork

This commit is contained in:
Annika
2022-07-12 16:12:03 -06:00
parent ef06dd057a
commit df80f78072
12 changed files with 265 additions and 22 deletions
+28
View File
@@ -0,0 +1,28 @@
<template>
<div class="component">
<p>{{category}}</p>
</div>
</template>
<script>
import { computed, reactive, onMounted, ref, watchEffect } from "vue";
export default {
props: {
category: {
type: Object,
required: true
}
},
setup(props){
}
}
</script>
<style lang="scss" scoped>
</style>