File tree Expand file tree Collapse file tree 7 files changed +392
-411
lines changed
Expand file tree Collapse file tree 7 files changed +392
-411
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = {
1111 ] ,
1212 "extends" : [
1313 "eslint:recommended" ,
14- "plugin:vue/recommended" ,
14+ "plugin:vue/vue3- recommended" ,
1515 "plugin:import/errors" ,
1616 "plugin:import/warnings"
1717 ] ,
@@ -50,4 +50,4 @@ module.exports = {
5050 "warn"
5151 ]
5252 }
53- } ;
53+ } ;
Original file line number Diff line number Diff line change 1212 :passiveThickness ='passiveThickness'
1313 )
1414 .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
1919 div( style ='margin-top:10px' )
20- label Thickness:
20+ label Thickness:
2121 input( type = 'text' v-model ='lineThickness' )
2222 div( style ='margin-top:10px' )
23- label Active Step Thickness
23+ label Active Step Thickness
2424 input( type = 'text' v-model ='activeThickness' )
2525 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' )
2828</template >
2929
3030<script >
6161 text-align : center
6262 button
6363 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' ;
22
33import App from './App.vue' ;
44
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