🎉 Initial Commit
This commit is contained in:
25
pages/products/[...slug].vue
Normal file
25
pages/products/[...slug].vue
Normal file
@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<content-doc>
|
||||
<template #empty>
|
||||
<v-empty-state
|
||||
icon="mdi-image-broken-variant"
|
||||
text="This product has no spefifc describe for it, yet."
|
||||
title="No Content"
|
||||
class="no-content-placeholder"
|
||||
>
|
||||
<template #actions>
|
||||
<v-btn prepend-icon="mdi-list-box" variant="plain" text="Back to index" to="/products" exact />
|
||||
</template>
|
||||
</v-empty-state>
|
||||
</template>
|
||||
</content-doc>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.no-content-placeholder {
|
||||
min-height: 0;
|
||||
max-height: 64rem;
|
||||
}
|
||||
</style>
|
3
pages/products/index.vue
Normal file
3
pages/products/index.vue
Normal file
@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<v-container></v-container>
|
||||
</template>
|
Reference in New Issue
Block a user