mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 09:19:56 +02:00
33 lines
772 B
Vue
33 lines
772 B
Vue
<template>
|
|
<main v-title="labels.title">
|
|
<section class="ui vertical stripe segment">
|
|
<edits-card-list :update-url="true" :default-query="defaultQuery">
|
|
<h2 class="ui header"><translate translate-context="Content/Admin/Title/Noun">Library edits</translate></h2>
|
|
</edits-card-list>
|
|
</section>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import EditsCardList from "@/components/manage/library/EditsCardList"
|
|
|
|
export default {
|
|
props: {
|
|
defaultQuery: {type: String, required: false},
|
|
},
|
|
components: {
|
|
EditsCardList
|
|
},
|
|
computed: {
|
|
labels() {
|
|
return {
|
|
title: this.$pgettext('*/Admin/*/Noun', 'Edits')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
</style>
|