This commit is contained in:
khatabwedaa 2020-09-12 11:48:00 +02:00
parent 44e1062487
commit d3d3af0719
2 changed files with 21 additions and 0 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@
node_modules
/dist
package-lock.json
yarn.lock
# local env files
.env.local

View file

@ -31,6 +31,8 @@
<a href="https://twitter.com/khatabwedaa" class="text-blue-400 hover:underline">@khatabwedaa</a> &
<a href="https://twitter.com/miaababikir" class="text-blue-400 hover:underline">@miaababikir</a>
</p>
<p v-text="started"></p>
</div>
</div>
@ -44,3 +46,21 @@
</div>
</header>
</template>
<script>
export default {
data() {
return {
started: 0
}
},
created() {
this.fetchStar();
},
methods: {
fetchStar() {}
}
}
</script>