20 lines
329 B
Vue
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>
|