Removed unused components.

このコミットが含まれているのは:
テクニカル諏訪子 2018-01-31 16:59:18 +09:00
コミット a9922ea91d
3個のファイルの変更0行の追加79行の削除

ファイルの表示

@ -1,32 +0,0 @@
<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[0].changelog;
})
}
}
</script>
<style>
.col {
text-align: center;
}
</style>

ファイルの表示

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

ファイルの表示

@ -1,15 +0,0 @@
<template>
<div class="container">
<div class="row">
<div class="col-md-12">
(IMG)
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-screenshots'
}
</script>