Created
November 17, 2017 16:12
-
-
Save ankitsinghaniyaz/eb805a8d2d6cfcb79f6e561fe993bdf9 to your computer and use it in GitHub Desktop.
Vue generator generated files
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="posts-index-view"> | |
<posts-index-view> | |
</posts-index-view> | |
</div> | |
<%= stylesheet_pack_tag 'posts/index' %> | |
<%= javascript_pack_tag 'posts/index' %> |
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
import Vue from 'vue/dist/vue.esm'; | |
import PostsIndex from 'views/posts/index'; | |
new Vue({ | |
el: '#posts-index-view', | |
components: { | |
'posts-index-view': PostsIndex | |
} | |
}); |
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
<template> | |
</template> | |
<script> | |
export default { | |
} | |
</script> | |
<style scoped> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment