Skip to content

Commit 57c3f84

Browse files
fix ts type
1 parent d2ef285 commit 57c3f84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/demos/Demos/Stepper/Overview/Vue

apps/demos/Demos/Stepper/Overview/Vue/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ import { DxButtonGroup, type DxButtonGroupTypes } from 'devextreme-vue/button-gr
7878
import { DxCheckBox } from 'devextreme-vue/check-box';
7979
import { steps, orientations, navigationModes } from './data.ts';
8080
81-
const orientation = ref<Orientation>(orientations[0].value);
81+
const orientation = ref(<Orientation>orientations[0].value);
8282
const navigationMode = ref(navigationModes[0].value);
8383
const selectOnFocus = ref(true);
8484
const rtlMode = ref(false);

0 commit comments

Comments
 (0)