My SMM panel
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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