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",
|
||||
"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>
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||
<title>Components App</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div data-cy-root></div>
|
||||
</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 ItRadioGroup from "./ItRadioGroup.vue";
|
||||
import type { RadioItem } from "@/pages/learningPath/learningContentPage/feedback/feedback.types";
|
||||
|
||||
const meta: Meta<typeof ItRadioGroup> = {
|
||||
title: "VBV/RadioGroup",
|
||||
|
|
@ -28,6 +28,8 @@ export const RadioGroup: Story = {
|
|||
modelValue: modelValue,
|
||||
items: items,
|
||||
label: "Radiogroup",
|
||||
"onUpdate:modelValue": (newValue) => { modelValue = newValue }
|
||||
"onUpdate:modelValue": (newValue) => {
|
||||
modelValue = newValue;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue