first commit

This commit is contained in:
Inshal
2024-05-29 22:34:28 +05:00
commit e63fc41a20
1470 changed files with 174828 additions and 0 deletions

View File

@@ -0,0 +1,86 @@
<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>

View File

@@ -0,0 +1,86 @@
<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable density="compact">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>

View File

@@ -0,0 +1,89 @@
<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable
height="250"
fixed-header
>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>

View File

@@ -0,0 +1,86 @@
<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable height="250">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>

View File

@@ -0,0 +1,86 @@
<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable theme="dark">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>

View File

@@ -0,0 +1,876 @@
export const basic = { ts: `<script setup lang="ts">
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
`, js: `<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
` }
export const density = { ts: `<script setup lang="ts">
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable density="compact">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
`, js: `<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable density="compact">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
` }
export const fixedHeader = { ts: `<script setup lang="ts">
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable
height="250"
fixed-header
>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
`, js: `<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable
height="250"
fixed-header
>
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
` }
export const height = { ts: `<script setup lang="ts">
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable height="250">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
`, js: `<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable height="250">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
` }
export const theme = { ts: `<script setup lang="ts">
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable theme="dark">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
`, js: `<script setup>
const desserts = [
{
dessert: 'Frozen Yogurt',
calories: 159,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Ice cream sandwich',
calories: 237,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Eclair',
calories: 262,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Cupcake',
calories: 305,
fat: 6,
carbs: 24,
protein: 4,
},
{
dessert: 'Gingerbread',
calories: 356,
fat: 6,
carbs: 24,
protein: 4,
},
]
</script>
<template>
<VTable theme="dark">
<thead>
<tr>
<th class="text-uppercase">
Desserts(100g Servings)
</th>
<th class="text-uppercase">
calories
</th>
<th class="text-uppercase">
Fat(g)
</th>
<th class="text-uppercase">
Carbs(g)
</th>
<th class="text-uppercase">
protein(g)
</th>
</tr>
</thead>
<tbody>
<tr
v-for="item in desserts"
:key="item.dessert"
>
<td>
{{ item.dessert }}
</td>
<td>
{{ item.calories }}
</td>
<td>
{{ item.fat }}
</td>
<td>
{{ item.carbs }}
</td>
<td>
{{ item.protein }}
</td>
</tr>
</tbody>
</VTable>
</template>
` }