File tree 7 files changed +392
-411
lines changed 7 files changed +392
-411
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = {
11
11
] ,
12
12
"extends" : [
13
13
"eslint:recommended" ,
14
- "plugin:vue/recommended" ,
14
+ "plugin:vue/vue3- recommended" ,
15
15
"plugin:import/errors" ,
16
16
"plugin:import/warnings"
17
17
] ,
@@ -50,4 +50,4 @@ module.exports = {
50
50
"warn"
51
51
]
52
52
}
53
- } ;
53
+ } ;
Original file line number Diff line number Diff line change 12
12
:passiveThickness ='passiveThickness'
13
13
)
14
14
.buttons
15
- button( @click ='currentStep--' ) <
16
- button( @click ='currentStep++' ) >
17
- button( @click ='activeColor = "purple" ' ) Set active color to purple
18
- button( @click ='passiveColor = "pink" ' ) Set passive color to pink
15
+ button( @click ='currentStep--' ) <
16
+ button( @click ='currentStep++' ) >
17
+ button( @click ='activeColor = "purple" ' ) Set active color to purple
18
+ button( @click ='passiveColor = "pink" ' ) Set passive color to pink
19
19
div( style ='margin-top:10px' )
20
- label Thickness:
20
+ label Thickness:
21
21
input( type = 'text' v-model ='lineThickness' )
22
22
div( style ='margin-top:10px' )
23
- label Active Step Thickness
23
+ label Active Step Thickness
24
24
input( type = 'text' v-model ='activeThickness' )
25
25
div( style ='margin-top:10px' )
26
- label Passive Step Thickness
27
- input( type = 'text' v-model ='passiveThickness' )
26
+ label Passive Step Thickness
27
+ input( type = 'text' v-model ='passiveThickness' )
28
28
</template >
29
29
30
30
<script >
61
61
text-align : center
62
62
button
63
63
margin-left : 10px
64
- </style >
64
+ </style >
Original file line number Diff line number Diff line change 1
- import Vue from 'vue' ;
1
+ import { createApp } from 'vue' ;
2
2
3
3
import App from './App.vue' ;
4
4
5
- let app = new Vue ( App ) ;
6
- app . $ mount( '#app' ) ;
5
+ let app = createApp ( App ) ;
6
+ app . mount ( '#app' ) ;
You can’t perform that action at this time.
0 commit comments