Convert to PrimeVue monorepo

This commit is contained in:
Mert Sincan 2024-06-11 13:21:12 +01:00
parent 970ba75b06
commit 61929eae75
4144 changed files with 59008 additions and 36177 deletions

View file

@ -0,0 +1,29 @@
<template>
<div>
<p>
There are <strong>{{ totalProducts }}</strong> products in total in this list.
</p>
<div class="flex justify-end">
<Button autofocus type="button" label="Close" @click="closeDialog"></Button>
</div>
</div>
</template>
<script>
export default {
inject: ['dialogRef'],
data() {
return {
totalProducts: 0
};
},
mounted() {
this.totalProducts = this.dialogRef.data.totalProducts;
},
methods: {
closeDialog() {
this.dialogRef.close();
}
}
};
</script>