Skip to content
Prev Previous commit
Next Next commit
Put some nextcloud vue components on the page
  • Loading branch information
tucker-m committed Mar 17, 2021
commit 1351b6b1f72a5f6d693299a92c2e871933f51e51
13 changes: 11 additions & 2 deletions js/vue_components/component.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
<template>
<div>
<p>asdf newest first is {{this.oldestFirst.toString()}}</p>
<Actions>
<ActionButton icon="icon-delete">Delete something</ActionButton>
<ActionButton icon="icon-add">Add Something</ActionButton>
</Actions>
</div>
</template>

<script>
// import { ActionButton } from '@nextcloud/vue/dist/Components';
import Actions from '@nextcloud/vue/dist/Components/Actions';
import ActionButton from '@nextcloud/vue/dist/Components/ActionButton';

module.exports = {
export default {
props: {
oldestFirst: Boolean
},
components: {
Actions,
ActionButton,
}
};
</script>
Expand Down