After updating to SB7-RC1 "formatter-MGIGMU7Y.mjs" throws the error when I try to inject HTML (or custom elements for the matter) into args working as vue slots. Result is no generation of docs.
Both SB6.5 and SB7 implementations via the documentation (template reuse and render function) tried.
`
//sticker.stories.js
const Template = (args) => ({
components: { Sticker },
setup() {
return { args };
},
template: '<Sticker v-bind="args">${args.default}</Sticker>'
});
export const IconVariant = Template.bind({});
IconVariant.args = {
default: '<i class="some-icon"></i>',
};
here</i>` will be unexpected.
Error stack also shows:
react-dom.development.js:20085 The above error occurred in the <SyntaxHighlighter2> component: at SyntaxHighlighter2 (http://localhost:6006/node_modules/.cache/.vite-storybook/deps/chunk-XIM4PSKC.js?v=70f2c8c2:1559:29)
Have I missed some core changes?