platypush/platypush/backend/http/webapp/src/components/panels/Tts/Index.vue

13 lines
181 B
Vue
Raw Normal View History

2021-02-19 20:47:29 +01:00
<template>
<Panel plugin-name="tts" />
</template>
<script>
import Panel from "@/components/panels/Tts/Panel";
export default {
name: "Tts",
components: {Panel}
}
</script>