mirror of
https://github.com/chenasraf/nextcloud-autocurrency.git
synced 2026-05-17 17:28:06 +00:00
28 lines
434 B
Vue
28 lines
434 B
Vue
<template>
|
|
|
|
<div class="jukebox-{{ kebabCase name }}">{{ startCase name }} Page</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
// import NcComponentExample from '@nextcloud/vue/components/NcComponentExample'
|
|
|
|
//
|
|
// import IconExample from 'vue-material-design-icons/Example.vue'
|
|
|
|
export default {
|
|
name: '{{pascalCase name}}Page',
|
|
components: {
|
|
//
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
/*
|
|
#jukebox-{{ kebabCase name }} {
|
|
}
|
|
*/
|
|
</style>
|
|
|