File tree Expand file tree Collapse file tree 4 files changed +74
-14
lines changed Expand file tree Collapse file tree 4 files changed +74
-14
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<!-- Get passed down to MyLayout.vue
3
3
& listen for custom events emitted from MyLayout.vue -->
4
- <router-view
5
- v-on:undo =" undoTrigger"
6
- v-on:redo =" redoTrigger"
7
- v-bind:done-action =" doneAction"
8
- v-bind:undone-action =" undoneAction"
9
- />
4
+ <router-view v-on:undo =" undoTrigger" v-on:redo =" redoTrigger" v-bind:done-action =" doneAction"
5
+ v-bind:undone-action =" undoneAction" />
10
6
</template >
11
7
12
8
<script >
@@ -44,7 +40,7 @@ let redoMixin = {
44
40
if (this .undoneAction [this .undoneAction .length - 1 ]) {
45
41
if (
46
42
action .type ===
47
- this .undoneAction [this .undoneAction .length - 1 ].type &&
43
+ this .undoneAction [this .undoneAction .length - 1 ].type &&
48
44
deepEqual (
49
45
action .payload ,
50
46
this .undoneAction [this .undoneAction .length - 1 ].payload
Original file line number Diff line number Diff line change 21
21
<q-tab-panel name =" basics" >
22
22
<BasicFunctions @nextTab =" tutorialPage = 'advanced'" />
23
23
</q-tab-panel >
24
+
24
25
<q-tab-panel name =" version" >
25
26
<NewVersionInfo @nextTab =" tutorialPage = 'version'" />
26
27
</q-tab-panel >
Original file line number Diff line number Diff line change 3
3
<section id =" welcomeTab" >
4
4
<h6 class =" tutorialHeading" >Welcome to</h6 >
5
5
<img alt =" OverVue" src =" ../../../assets/overvue_layeredlogo.png" id =" logo" >
6
- <q-btn class =" tut-btn" color =" secondary" label =" What's New in 7.0" @click =" versionTab " />
6
+ <q-btn class =" tut-btn" color =" secondary" label =" What's New in 7.0" @click =" newTab " />
7
7
<q-btn class =" tut-btn" color =" secondary" label =" View the Readme"
8
8
@click =" openUrl('https://github.com/open-source-labs/OverVue#readme')" />
9
9
<p id =" new-text" >New to OverVue?</p >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<section id =" new features" >
3
- <q-card id = " list" >
3
+ <h6 class = " feature list" >What's New?</ h6 >
4
4
5
- <h6 class =" feature list" >What's New?</h6 >
5
+ <p class =" info-sub-heading" >More Semantic HMTL</p >
6
+ <p class =" infoContent" ></p >
6
7
7
- <p >More Semantic HMTL</p >
8
- <p >Component Customization</p >
8
+ <p class =" info-sub-heading" >Component Customization</p >
9
+ <p class =" infoContent" ></p >
10
+
11
+ <p class =" info-sub-heading" >Drag and Drop for HTML Tags </p >
12
+ <p class =" infoContent" ></p >
13
+
14
+ <p class =" info-sub-heading" >Add class, id, and v-model Attributes </p >
15
+ <p class =" infoContent" ></p >
16
+
17
+ <p class =" info-sub-heading" >Added Scoped Tags</p >
18
+ <p class =" infoContent" ></p >
19
+
20
+ <p class =" info-sub-heading" >Ability to Nest Components</p >
21
+ <p class =" infoContent" ></p >
9
22
10
- </q-card >
11
23
</section >
12
- </template >
24
+ </template >
25
+
26
+ <style scoped lang="scss">
27
+ #basicFunctions {
28
+ display : flex ;
29
+ flex-direction : column ;
30
+ justify-content : center ;
31
+ align-items : center ;
32
+ margin : 10px ;
33
+ }
34
+
35
+ .tutorialHeading {
36
+ margin : .75rem ;
37
+ font-size : 2rem ;
38
+ padding-top : 15px ;
39
+ }
40
+
41
+ .info-sub-heading {
42
+ align-self : flex-start ;
43
+ font-size : 1.4rem ;
44
+ margin : .75rem ;
45
+ margin-bottom : 0px ;
46
+ }
47
+
48
+ .infoContent {
49
+ margin : .75rem ;
50
+ align-self : flex-start ;
51
+ font-size : 1rem ;
52
+ }
53
+
54
+ .tut-btn {
55
+ margin : 0.75rem ;
56
+ width : 50% ;
57
+ min-height : 42px ;
58
+ height : auto ;
59
+ }
60
+
61
+ .tut-image {
62
+ margin : 4px ;
63
+ }
64
+
65
+ .tut-screenshot {
66
+ margin : 4px ;
67
+ border : 1px solid $primary ;
68
+ max-width : 300px ;
69
+ }
70
+
71
+ #advanced-btn {
72
+ margin-top : 30px !important ;
73
+ margin-bottom : 50px !important ;
74
+ }
75
+ </style >
You can’t perform that action at this time.
0 commit comments