| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="slide-box">
- </view>
- </template>
- <script>
- export default {
- name: "slide-item",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .slide-box{
- }
- </style>
|