Created
January 27, 2018 02:20
-
-
Save hibuno/8352a4a06005de03b8843aef25e1fa9f to your computer and use it in GitHub Desktop.
Add button load more and style
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
// Add button "load more" before closing tag </template> | |
<button class="btn btn-primary btn-more" @click="loadMore">Load More</button> | |
</div> | |
</template> | |
// Add style for button "load more" after tag <style> | |
<style lang="scss" scoped> | |
.btn-more { | |
margin: 20px auto; | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment