17 lines
459 B
Vue

<script lang="ts">
import { defineComponent } from 'vue'
// Example app to verify @ocelot-social/ui works with Vue 2.7 + Tailwind
export default defineComponent({
name: 'App',
})
</script>
<template>
<div id="app">
<h1>Vue 2.7 + Tailwind + @ocelot-social/ui</h1>
<p>This example verifies that the UI library works with Vue 2.7 and Tailwind CSS.</p>
<!-- Components will be added here as they are developed -->
</div>
</template>