Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Incompatible units px and rem.
  2.  
  3. $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
  4.  
  5. $font-size-base: 14px !default;
  6. to
  7. $font-size-base: 1rem;
  8.  
  9. @import 'variables';
  10.  
  11. Vue.component('my-component', require('./components/MyComponent.vue').default);
  12.  
  13. const app = new Vue({
  14. el: '#example',
  15. });
  16.  
  17. export default {
  18. name: "my-component",
  19. props: {
  20. headerColor: {
  21. type: String,
  22. default: ""
  23. }
  24. },
  25. data() {
  26. return {
  27. input: null,
  28. input: null,
  29. input: null,
  30. input: null,
  31. input: null,
  32. input: null,
  33. input: null,
  34. input: null,
  35. input: null,
  36. input:
  37. "Some example text"
  38. };
  39. },
  40. };
  41.  
  42. <div id="example">
  43. <my-component></my-component>
  44. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement