aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/site/src/views/index/Notepad/index.vue
blob: c4c82aae4c0b042f61c408dc9b588c5d10fbf777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<script lang="ts">
export default {
  props: {
    title: {
      type: String,
      default: "1",
    },
    message: {
      type: String,
      require: true
    },
    date: {
      type: Date,
      default: new Date('2024-07-14T12:00:00Z')
    }
  },
}
</script>


<template>
  <div class="details" style="overflow-y:scroll;overflow-x:hidden;height:100%">
    <h3>
      {{ title }}
    </h3>
    <v-md-preview :text="message" ></v-md-preview>
  </div>
</template>


<style scoped>


h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-heading);
}

.details {
  flex: 1;
  width: 30dvw;
}
</style>