My SMM panel
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

20 lignes
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')