Last active
August 11, 2020 19:18
-
-
Save simonjcarr/3f200ba56621bf89b6285182b388c9ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <img alt="Vue logo" src="./assets/logo.png" /> | |
| <Count msg="Hello Vue 3.0 + Vite" /> | |
| </template> | |
| <script> | |
| import Count from './components/Count.vue' | |
| export default { | |
| name: 'App', | |
| components: { | |
| Count | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment