24 lines
650 B
Vue
24 lines
650 B
Vue
<template>
|
|
<footer>
|
|
<div class="container">
|
|
<AppLink
|
|
name="global-feed"
|
|
class="logo-font"
|
|
>
|
|
conduit
|
|
</AppLink>
|
|
<span class="attribution">
|
|
An interactive learning project from <a href="https://thinkster.io">Thinkster</a>. Code & design licensed under MIT.
|
|
</span>
|
|
</div>
|
|
<div class="container">
|
|
<span
|
|
class="attribution"
|
|
style="margin: 0"
|
|
>
|
|
<a href="https://github.com/mutoe/vue3-realworld-example-app">Real world app</a> implementation using Vue v3 with Typescript and Composition Api
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
</template>
|