Skip to content

Commit

Permalink
fix: change title and minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
swaprenge committed Dec 24, 2020
1 parent e7d8500 commit 3327aa0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/examples/Basic.stories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Basic from './Basic.vue';
export default { title: 'Basic' };
export default { title: 'Examples' };
export const asAComponentWithNoDrag = () => ({
components: { Basic },
template: `<Basic/>`,
Expand Down
2 changes: 1 addition & 1 deletion src/components/examples/Events.stories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Events from './Events.vue';
export default { title: 'Basic' };
export default { title: 'Examples' };
export const asAComponentWithEvents = () => ({
components: { Events },
template: `<Events/>`,
Expand Down
6 changes: 3 additions & 3 deletions src/components/examples/Events.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
<script>
import GridLayout from '@/components/GridLayout';
import GridItem from '@/components/GridItem';
import { onMounted, ref, watch } from '@vue/composition-api';
import { defineComponent, onMounted, ref, watch } from '@vue/composition-api';
export default {
export default defineComponent({
components: {
GridLayout,
GridItem,
Expand Down Expand Up @@ -203,7 +203,7 @@
layoutUpdatedEvent,
};
},
};
});
</script>

<style scoped>
Expand Down
2 changes: 1 addition & 1 deletion src/components/examples/MultipleGrids.stories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import MultipleGrids from './MultipleGrids.vue';
export default { title: 'Basic' };
export default { title: 'Examples' };
export const asAComponentWithMultipleGrids = () => ({
components: { MultipleGrids },
template: `<MultipleGrids/>`,
Expand Down
6 changes: 3 additions & 3 deletions src/components/examples/MultipleGrids.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
<script>
import GridLayout from '@/components/GridLayout';
import GridItem from '@/components/GridItem';
import { ref, watch } from '@vue/composition-api';
import { defineComponent, ref, watch } from '@vue/composition-api';
export default {
export default defineComponent({
components: {
GridLayout,
GridItem,
Expand Down Expand Up @@ -197,7 +197,7 @@
layoutUpdatedEvent,
};
},
};
});
</script>

<style scoped>
Expand Down

0 comments on commit 3327aa0

Please sign in to comment.