My SMM panel
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

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