mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
14 lines
268 B
Vue
14 lines
268 B
Vue
<script setup lang="ts">
|
|
import PopupElement from './PopupElement.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<PopupElement>
|
|
<h2></h2>
|
|
<button>Ok</button>
|
|
<button>Cancel</button>
|
|
</PopupElement>
|
|
</div>
|
|
</template>
|