Skip to content

Commit 6f6bb25

Browse files
committed
chore: update
1 parent 9c7fc68 commit 6f6bb25

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"packageManager": "pnpm@8.6.12",
55
"description": "My new Nuxt module",
6-
"repository": "your-org/nuxt-compile-markdown",
6+
"repository": "nuxt-modules/compile-markdown",
77
"license": "MIT",
88
"type": "module",
99
"exports": {

playground/components/Alert.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div class="alert">
3+
<slot />
4+
</div>
5+
</template>
6+
7+
<style scoped>
8+
.alert {
9+
padding: 1rem;
10+
border: 1px solid #eee;
11+
border-radius: 4px;
12+
background-color: #fafafa;
13+
color: #333;
14+
}
15+
</style>

playground/pages/about.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ meta:
66
# About page
77

88
Go back [home](/)
9+
10+
<Alert>
11+
12+
**Hello** World!
13+
14+
</Alert>

0 commit comments

Comments
 (0)