```md import { Canvas, Meta, Story } from '@storybook/addon-docs'; import YourComponent from './YourComponent.vue'; export const someFunction = (valuePropertyA, valuePropertyB) => { // Makes some computations and returns something }; { const { propertyA, propertyB } = args; const functionResult = someFunction(propertyA, propertyB); return { components: { YourComponent }, setup() { return { args: { ...args, someProperty: functionResult, }, }; }, template: '', }; }} /> ```