This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0
wcui/src/picker/date.wc

22 lines
238 B
Plaintext

<template>
<input type="text" />
</template>
<style lang="scss">
:host {
display: inline-block;
}
</style>
<script>
export default class DatePicker {
props = {
value: ''
}
constructor() {
/* render */
}
}
</script>
wcui是一套基于`Web Components`的UI组件库, 宗旨是追求简单、实用、不花哨。
JavaScript 95.2%
CSS 4.8%