このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/resources/assets/js/components/EntryChangelog.vue

32 行
614 B
Vue

<template>
<div class="container">
<div class="row">
<div class="col-md-12">
{{ changelog }}
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-changelog',
data: function () {
return {
id: 1,
changelog: ''
}
},
created: function () {
axios.get('/api/rpc/file/getfilechangelog' + this.id).then(data => {
this.changelog = data.data.changelog;
})
}
}
</script>
<style>
.col {
text-align: center;
}
</style>