25 lines
426 B
Vue
25 lines
426 B
Vue
|
<template>
|
||
|
<LayoutMinimal title="Changelog">
|
||
|
<ul>
|
||
|
<li>Added toggle to change visibility of single projects and tags</li>
|
||
|
</ul>
|
||
|
</LayoutMinimal>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
// @ is an alias to /src
|
||
|
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
||
|
|
||
|
export default {
|
||
|
name: "NotFound",
|
||
|
components: {
|
||
|
LayoutMinimal
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="sass" scoped>
|
||
|
ul
|
||
|
list-style-type: '+ '
|
||
|
</style>
|