Skip to content

Commit

Permalink
docs(VAppBar): switch examples to plain markup (#14547)
Browse files Browse the repository at this point in the history
  • Loading branch information
KareemDa authored Jun 15, 2022
1 parent b9a7979 commit 8b4e0e7
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions packages/docs/src/examples/v-app-bar/misc-menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,30 @@
</template>

<v-list>
<v-list-item
v-for="(item, i) in items"
:key="i"
>
<v-list-item-title>{{ item.title }}</v-list-item-title>
<v-list-item>
<v-list-item-title>Click Me 1</v-list-item-title>
</v-list-item>

<v-list-item>
<v-list-item-title>Click Me 2</v-list-item-title>
</v-list-item>

<v-list-item>
<v-list-item-title>Click Me 3</v-list-item-title>
</v-list-item>

<v-list-item>
<v-list-item-title>Click Me 4</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>

<template v-slot:extension>
<v-tabs align-with-title>
<v-tab>Tab 1</v-tab>

<v-tab>Tab 2</v-tab>

<v-tab>Tab 3</v-tab>
</v-tabs>
</template>
Expand All @@ -73,16 +84,3 @@
</v-sheet>
</v-card>
</template>

<script>
export default {
data: () => ({
items: [
{ title: 'Click Me' },
{ title: 'Click Me' },
{ title: 'Click Me' },
{ title: 'Click Me 2' },
],
}),
}
</script>

0 comments on commit 8b4e0e7

Please sign in to comment.