We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c1cb6 commit b2e7447Copy full SHA for b2e7447
src/tailwindcss-stubs/resources/js/components/ExampleComponent.vue
@@ -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
11
12
+</template>
13
+
14
+<script>
15
+ export default {
16
+ mounted() {
17
+ console.log('Component mounted.')
18
+ }
19
20
+</script>
0 commit comments