Files
plex-playlist/frontend/src/App.vue
2025-10-18 21:33:45 -04:00

20 lines
329 B
Vue

<template>
<div id="app">
<h1>Plex Playlist</h1>
<p>Welcome to the Plex Playlist Manager</p>
</div>
</template>
<script setup lang="ts">
// Main App component
</script>
<style scoped>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>