Skip to content
Snippets Groups Projects
Commit 3c75b57f authored by Julian's avatar Julian
Browse files

Show example 1 in docs

parent 9800b866
No related branches found
No related tags found
1 merge request!2Resolve "Implement basic functionality"
......@@ -7,13 +7,14 @@ module.exports = {
title: 'Components',
collapsable: false,
children: [
'/components/DragGrid.md',
'/examples/Generic.md',
]
}
],
nav: [
{ text: 'Home', link: '/' },
{ text: 'Guide', link: '/guide/' },
{ text: 'Examples', link: '/examples/Generic.md'},
{ text: 'Repository', link: 'https://edugit.org/AlekSIS/libs/vue-draggable-grid/' }
]
}
......
# DragGrid
`DragGrid` is a cool component. Here's how to use it...
<template>
<DragGrid :rows="5" :cols="5" v-model="items"></DragGrid>
</template>
\ No newline at end of file
# Example 1: Generic Example
Grid with two programmatically blocked cells and one programmatically blocked item
<ClientOnly>
<script setup>
import Example1Generic from "../../example/src/Example1Generic.vue";
</script>
<Example1Generic />
</ClientOnly>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment