Color works again again.
This commit is contained in:
parent
fad887762e
commit
7f8dcdd239
@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import Paragraph from "../../tags/Paragraph.vue";
|
import Paragraph from "./tags/Paragraph.vue";
|
||||||
import PageStart from "../../tags/PageStart.vue";
|
import PageStart from "./tags/PageStart.vue";
|
||||||
import CodeTag from "../../tags/CodeTag.vue";
|
import CodeTag from "./tags/CodeTag.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -165,7 +165,7 @@ $ ./main
|
|||||||
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../tags/CodeTag.vue";
|
||||||
</script>
|
</script>
|
@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../tags/CodeTag.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -15,7 +15,7 @@ import PageStart from "../../../tags/PageStart.vue";
|
|||||||
Let's look at a small list of some common types.</paragraph>
|
Let's look at a small list of some common types.</paragraph>
|
||||||
|
|
||||||
<ul class="mb-6">
|
<ul class="mb-6">
|
||||||
<li>> <code-tag>integer</code-tag></li>
|
<li>> <CodeTag>integer</CodeTag></li>
|
||||||
<li>> <code-tag>real</code-tag></li>
|
<li>> <code-tag>real</code-tag></li>
|
||||||
<li>> <code-tag>double precision</code-tag></li>
|
<li>> <code-tag>double precision</code-tag></li>
|
||||||
<li>> <code-tag>logical</code-tag></li>
|
<li>> <code-tag>logical</code-tag></li>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../tags/CodeTag.vue";
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../tags/CodeTag.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../tags/CodeTag.vue";
|
||||||
import PageStart from "../../../tags/PageStart.vue";
|
import PageStart from "../tags/PageStart.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../tags/Paragraph.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
3
src/components/tags/CodeTag.vue
Normal file
3
src/components/tags/CodeTag.vue
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<template>
|
||||||
|
<code class="text-red-500"><slot/></code>
|
||||||
|
</template>
|
@ -1,3 +0,0 @@
|
|||||||
<template>
|
|
||||||
<code class="text-red-500"><slot></slot></code>
|
|
||||||
</template>
|
|
Loading…
Reference in New Issue
Block a user