build(#10336): sync

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-03-25 04:00:09 +09:00
parent 723cff0205
commit 8332c03bd8
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
2 changed files with 35 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,34 @@
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable import/no-default-export */
import { Meta, StoryObj } from '@storybook/vue3';
import drive_cleaner from './drive-cleaner.vue';
const meta = {
title: 'pages/settings/drive-cleaner',
component: drive_cleaner,
} satisfies Meta<typeof drive_cleaner>;
export const Default = {
render(args) {
return {
components: {
drive_cleaner,
},
setup() {
return {
args,
};
},
computed: {
props() {
return {
...args,
};
},
},
template: '<drive_cleaner v-bind="props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof drive_cleaner>;
export default meta;