Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <template>
  2. <div class="component-name">
  3.  
  4. </div>
  5. </template>
  6.  
  7. <script>
  8. import _ from 'lodash'; // commonly used, keep in template
  9.  
  10. export default {
  11. name: 'component-name',
  12. props: [],
  13. data: function () {
  14. return {
  15.  
  16. }
  17. },
  18. methods: {
  19.  
  20. },
  21.  
  22. }
  23. </script>
  24.  
  25. <style scoped>
  26. .form-it-input {
  27.  
  28. }
  29. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement