Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. vue.js
  2.  
  3. Vue.component('progress-bar', {
  4.     props: ['value'],
  5.     template:
  6.         '<div class="progress">' +
  7.         '<div class="progress-bar" role="progressbar" aria-valuenow="{{value}}" aria-valuemin="0" aria-valuemax="100"></div>' +
  8.         '</div>'
  9. })
  10.  
  11.  
  12. smarty tpl:
  13. <progress-bar :value="50"></progress-bar>
  14.  
  15. I nie dziala :(
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement