blob: ff4f26591213d89be08fb0fff8811aa552f670ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<template>
<div class="fc__changelog__container">
<el-link :underline="false" icon="DocumentCopy" target="_blank"
href="https://github.com/R2Northstar/Northstar/releases">
Open release notes
</el-link>
</div>
</template>
<script lang="ts">
export default {
name: "ChangelogView"
}
</script>
<style scoped>
.fc__changelog__container {
padding: 20px 30px;
}
.el-link {
color: white;
}
</style>
|