Skip to content

Instantly share code, notes, and snippets.

@mfaridzia
Last active June 5, 2018 11:54
Show Gist options
  • Save mfaridzia/5512fe61de4ad47baa2f08c4d5885425 to your computer and use it in GitHub Desktop.
Save mfaridzia/5512fe61de4ad47baa2f08c4d5885425 to your computer and use it in GitHub Desktop.
// File: App.vue
<template>
<div id="app">
<Value/>
<ChangeValue/>
</div>
</template>
<script>
import Value from './components/Value.vue'
import ChangeValue from './components/ChangeValue.vue'
export default {
name: 'app',
components: {
Value,
ChangeValue
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment