Last active
November 16, 2017 21:52
-
-
Save johnsardine/52234e2cf3dbd9cedcdb9ed7c480730d to your computer and use it in GitHub Desktop.
4 - Simple Vue component sample
This file contains 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
<div id="HelloSubject"> | |
<h1>Hello {{ subject }}!</h1> | |
</div> |
This file contains 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
Vue.component('hello-subject', { | |
template: '#HelloSubject', | |
props: { | |
subject: { | |
type: String, | |
}, | |
}, | |
}); |
This file contains 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
<hello-subject :subject="World"></hello-subject> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment