feat(docs): calendar code for composition (#2156)

Co-authored-by: 无星 <32910694@qq.com>
This commit is contained in:
Xing.Wu 2021-06-08 13:30:40 +08:00 committed by GitHub
parent 32449d67b8
commit 30433c0e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 85 additions and 0 deletions

View File

@ -18,6 +18,23 @@ Display date.
}
}
</script>
<!--
<setup>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref(new Date());
return {
value,
};
},
});
</setup>
-->
```
:::

View File

@ -18,6 +18,23 @@ Muestra fechas.
}
}
</script>
<!--
<setup>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref(new Date());
return {
value,
};
},
});
</setup>
-->
```
:::

View File

@ -18,6 +18,23 @@ Affiche un calendrier.
}
}
</script>
<!--
<setup>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref(new Date());
return {
value,
};
},
});
</setup>
-->
```
:::

View File

@ -18,6 +18,23 @@
}
}
</script>
<!--
<setup>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref(new Date());
return {
value,
};
},
});
</setup>
-->
```
:::

View File

@ -18,6 +18,23 @@
}
}
</script>
<!--
<setup>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref(new Date());
return {
value,
};
},
});
</setup>
-->
```
:::