Fix some linting issues
This commit is contained in:
parent
bec5924bb6
commit
10d70c2170
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "Using fixtures to represent data",
|
"body": "Fixtures are a great way to mock data for responses to routes",
|
||||||
"email": "hello@cypress.io",
|
"email": "hello@cypress.io",
|
||||||
"body": "Fixtures are a great way to mock data for responses to routes"
|
"name": "Using fixtures to represent data"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,4 +34,4 @@
|
||||||
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||||
<title>Components App</title>
|
<title>Components App</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div data-cy-root></div>
|
<div data-cy-root></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
import type { RadioItem } from "@/pages/learningPath/learningContentPage/feedback/feedback.types";
|
||||||
import type { Meta, StoryObj } from "@storybook/vue3";
|
import type { Meta, StoryObj } from "@storybook/vue3";
|
||||||
import ItRadioGroup from "./ItRadioGroup.vue";
|
import ItRadioGroup from "./ItRadioGroup.vue";
|
||||||
import type { RadioItem } from "@/pages/learningPath/learningContentPage/feedback/feedback.types";
|
|
||||||
|
|
||||||
const meta: Meta<typeof ItRadioGroup> = {
|
const meta: Meta<typeof ItRadioGroup> = {
|
||||||
title: "VBV/RadioGroup",
|
title: "VBV/RadioGroup",
|
||||||
|
|
@ -28,6 +28,8 @@ export const RadioGroup: Story = {
|
||||||
modelValue: modelValue,
|
modelValue: modelValue,
|
||||||
items: items,
|
items: items,
|
||||||
label: "Radiogroup",
|
label: "Radiogroup",
|
||||||
"onUpdate:modelValue": (newValue) => { modelValue = newValue }
|
"onUpdate:modelValue": (newValue) => {
|
||||||
|
modelValue = newValue;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue