You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
358 B
17 lines
358 B
<template>
|
|
<md-tab id="backendView" :md-icon="this.s_icon">
|
|
<p>Сборка от {{this.$API.builddate !== null ? new Date(this.$API.builddate) : 'Dev Build'}}</p>
|
|
</md-tab>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BackendStatus",
|
|
props: {
|
|
s_icon: {
|
|
type: String,
|
|
default: require('@/assets/server.svg')
|
|
}
|
|
}
|
|
}
|
|
</script>
|