We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc8687 commit d2ef285Copy full SHA for d2ef285
1 file changed
apps/demos/Demos/Stepper/Overview/Vue/App.vue
@@ -73,11 +73,12 @@
73
<script setup lang="ts">
74
import { ref } from 'vue';
75
import { DxStepper, DxItem } from 'devextreme-vue/stepper';
76
+import { type Orientation } from "devextreme-vue/common";
77
import { DxButtonGroup, type DxButtonGroupTypes } from 'devextreme-vue/button-group';
78
import { DxCheckBox } from 'devextreme-vue/check-box';
79
import { steps, orientations, navigationModes } from './data.ts';
80
-const orientation = ref(orientations[0].value);
81
+const orientation = ref<Orientation>(orientations[0].value);
82
const navigationMode = ref(navigationModes[0].value);
83
const selectOnFocus = ref(true);
84
const rtlMode = ref(false);
0 commit comments