My SMM panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
351 B

  1. const Counter = {
  2. data() {
  3. return {
  4. counter: 0
  5. }
  6. }
  7. }
  8. Vue.createApp(Counter).mount('#counter')
  9. const AttributeBindingApp = {
  10. data() {
  11. return {
  12. message: 'You loaded this page on ' + new Date().toLocaleString()
  13. }
  14. }
  15. }
  16. Vue.createApp(AttributeBindingApp).mount('#bind-attribute')