Skip to content

Instantly share code, notes, and snippets.

View humb1t's full-sized avatar
🏠
Working from home

Nikita Bishonen humb1t

🏠
Working from home
View GitHub Profile
@humb1t
humb1t / Hello.vue
Last active December 10, 2019 12:49 — forked from chrisvfritz/Hello.vue
<template>
<p>{{ greeting }} World!</p>
</template>
<script>
export default {
data: function () {
return {
greeting: 'Hello'
}