blob: 9fca5e5b6c081847c6245a2a68381b03c756a664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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>
|