Skip to content

Commit b2e7447

Browse files
committed
Add tailwind-stub to replace Example Vue Component
1 parent c2c1cb6 commit b2e7447

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<template>
2+
<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
3+
<div class="font-semibold bg-grey-lightest text-grey-darkest py-3 px-6 mb-0 shadow-inner">
4+
Example Component</div>
5+
<div class="w-full p-6">
6+
<p class="text-grey-darkest">
7+
I'm an example component.
8+
</p>
9+
</div>
10+
</div>
11+
</div>
12+
</template>
13+
14+
<script>
15+
export default {
16+
mounted() {
17+
console.log('Component mounted.')
18+
}
19+
}
20+
</script>

0 commit comments

Comments
 (0)