File tree Expand file tree Collapse file tree
apps/demos/Demos/Stepper/Overview/Vue Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7373<script setup lang="ts">
7474import { ref } from ' vue' ;
7575import { DxStepper , DxItem } from ' devextreme-vue/stepper' ;
76- import { type Orientation } from " devextreme-vue/common" ;
7776import { DxButtonGroup , type DxButtonGroupTypes } from ' devextreme-vue/button-group' ;
7877import { DxCheckBox } from ' devextreme-vue/check-box' ;
7978import { steps , orientations , navigationModes } from ' ./data.ts' ;
8079
81- const orientation = ref (< Orientation > orientations [0 ].value );
80+ const orientation = ref (orientations [0 ].value );
8281const navigationMode = ref (navigationModes [0 ].value );
8382const selectOnFocus = ref (true );
8483const rtlMode = ref (false );
Original file line number Diff line number Diff line change 1+ import { type Orientation } from "devextreme-vue/common" ;
2+
13export const steps = [
24 {
35 text : 'A' ,
@@ -27,7 +29,7 @@ export const steps = [
2729 } ,
2830] ;
2931
30- export const orientations = [
32+ export const orientations : { text : string , value : Orientation } [ ] = [
3133 { text : 'Horizontal' , value : 'horizontal' } ,
3234 { text : 'Vertical' , value : 'vertical' } ,
3335] ;
You can’t perform that action at this time.
0 commit comments