Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
webistomin committed Jan 11, 2023
2 parents 6b11811 + 3c7ea54 commit fdf3aa4
Show file tree
Hide file tree
Showing 124 changed files with 2,672 additions and 2,024 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ not Edge < 79
iOS >= 10
Safari >= 10
Android >= 6
Explorer >= 11
Explorer > 11
6 changes: 4 additions & 2 deletions .storybook/components/BaseCanvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
</template>

<script>
export default {
import { defineComponent } from 'vue';
export default defineComponent({
name: 'BaseCanvas',
};
});
</script>

<style lang="css">
Expand Down
24 changes: 13 additions & 11 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import BaseCanvas from './components/BaseCanvas.vue';
// import BaseCanvas from './components/BaseCanvas.vue';

export const parameters = {};

// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const decorators = [function BaseCanvasDecorator() {
return {
components: { BaseCanvas },
template: `
<base-canvas>
<story/>
</base-canvas>
`,
};
}];
// function BaseCanvasDecorator() {
// return {
// components: { BaseCanvas },
// template: `
// <base-canvas>
// <story/>
// </base-canvas>
// `,
// };
// }

// export const decorators = [BaseCanvasDecorator];
Loading

0 comments on commit fdf3aa4

Please sign in to comment.