mirror of
https://github.com/chenasraf/nextcloud-autocurrency.git
synced 2026-05-17 17:28:06 +00:00
25 lines
519 B
Vue
25 lines
519 B
Vue
<!--
|
|
SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<template>
|
|
<div>{{ startCase name }}</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComopnent, type PropType } from 'vue'
|
|
// import NcComponentExample from '@nextcloud/vue/dist/Components/NcComponentExample.js'
|
|
|
|
// import IconExample from '@icons/Example.vue'
|
|
|
|
export default defineComponent({
|
|
name: '{{pascalCase name}}',
|
|
components: {
|
|
//
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|