mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
20 lines
498 B
Vue
20 lines
498 B
Vue
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
// Example app to verify @ocelot-social/ui works with Vue 2.7 + pre-compiled CSS
|
|
export default defineComponent({
|
|
name: 'App',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<h1>Vue 2.7 + CSS + @ocelot-social/ui</h1>
|
|
<p>
|
|
This example verifies that the UI library works with Vue 2.7 and pre-compiled CSS (no
|
|
Tailwind).
|
|
</p>
|
|
<!-- Components will be added here as they are developed -->
|
|
</div>
|
|
</template>
|