34 lines
470 B
Vue
34 lines
470 B
Vue
|
<template>
|
||
|
<v-sheet
|
||
|
elevation="4"
|
||
|
width="60vw"
|
||
|
>
|
||
|
<div>
|
||
|
licenseName: {{ props.licenseName }}
|
||
|
licenseKey: {{ props.licenseKey }}
|
||
|
</div>
|
||
|
</v-sheet>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { defineProps } from 'vue'
|
||
|
|
||
|
|
||
|
const props = defineProps({
|
||
|
licenseName: String,
|
||
|
licenseKey: String,
|
||
|
startDate: String,
|
||
|
endDate: String,
|
||
|
amount: Number,
|
||
|
tags: Array,
|
||
|
notes: String,
|
||
|
})
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
|
||
|
</style>
|