```md
import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.vue';
export const someFunction = (someValue) => {
return `i am a ${someValue}`;
};
{
const { label } = args;
const functionResult = someFunction(label);
return {
components: { Button },
setup() {
return {
args: {
...args,
label: functionResult,
},
};
},
template: '',
};
}} />
```