Skip to content

Instantly share code, notes, and snippets.

@NickHatBoecker
Created May 5, 2021 19:53
Show Gist options
  • Save NickHatBoecker/4787e7a4c0911ccf4a908b0aced1c68d to your computer and use it in GitHub Desktop.
Save NickHatBoecker/4787e7a4c0911ccf4a908b0aced1c68d to your computer and use it in GitHub Desktop.
// src/App.vue
<template>
<div>
<newsticker :text="Lorem ipsum dolor sit amet." />
</div>
</template>
<script>
import Newsticker from '~/components/Newsticker'
export default {
components: { Newsticker },
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment