@@ -64,23 +64,15 @@ onMounted(() => {
64
64
<ContentRenderer :value =" doc" />
65
65
</div >
66
66
<div buttons class =" flex justify-between m-2.5 mt-auto" >
67
- <a
68
- :href =" doc && doc.previousPath ? `/${doc.previousPath}` : '/'"
69
- :class =" {
70
- 'pointer-events-none text-gray-400': !doc || !doc.previousPath,
71
- }"
72
- class =" flex items-center"
73
- >
67
+ <a :href =" doc && doc.previousPath ? `/${doc.previousPath}` : '/'" :class =" {
68
+ 'pointer-events-none text-gray-400': !doc || !doc.previousPath,
69
+ }" class =" flex items-center" >
74
70
<CircleChevronLeft :size =" 30" />
75
71
</a >
76
72
77
- <a
78
- :href =" doc && doc.nextPath ? `/${doc.nextPath}` : '/'"
79
- :class =" {
80
- 'pointer-events-none text-gray-400': !doc || !doc.nextPath,
81
- }"
82
- class =" flex items-center"
83
- >
73
+ <a :href =" doc && doc.nextPath ? `/${doc.nextPath}` : '/'" :class =" {
74
+ 'pointer-events-none text-gray-400': !doc || !doc.nextPath,
75
+ }" class =" flex items-center" >
84
76
<CircleChevronRight :size =" 30" />
85
77
</a >
86
78
</div >
@@ -109,6 +101,7 @@ onMounted(() => {
109
101
</button >
110
102
</div >
111
103
<CodeMirror v-if =" isCoding" v-model:code =" codeContent" />
104
+ <!-- TODO: Make a loader -->
112
105
<div v-else class =" terminal-output" >
113
106
<span class =" text-yellow" >$ <span class =" text-fg" >cargo</span > run</span >
114
107
<pre class =" text-pretty" >{{ terminalResponse }}</pre >
0 commit comments