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.
|
- const Counter = {
- data() {
- return {
- counter: 0
- }
- }
- }
-
- Vue.createApp(Counter).mount('#counter')
-
- const AttributeBindingApp = {
- data() {
- return {
- message: 'You loaded this page on ' + new Date().toLocaleString()
- }
- }
- }
-
- Vue.createApp(AttributeBindingApp).mount('#bind-attribute')
|