1

parent dd88b05c
<template>
<view class="container"></view>
</template>
<script setup>
import { useCountStore } from '@/store';
const title = ref('小程序平台');
const { countInfo, addCount } = useCountStore();
function toUIComponentsDoc() {
window.open('https://wot-design-uni.netlify.app/component/button.html');
}
function onHandleClick() {
addCount();
}
</script>
<style lang="scss">
.container {
.top {
width: 100%;
height: 440rpx;
background: linear-gradient(180deg, #fa5151 0%, rgba(243, 243, 243, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
}
</style>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<view class="container"> <view class="container">
<view class="top"> <view class="top">
<view> <view>
<wd-icon name="thin-arrow-left" class="icon"></wd-icon> <Search></Search>
</view> </view>
</view> </view>
</view> </view>
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
<script setup> <script setup>
import { useCountStore } from '@/store'; import { useCountStore } from '@/store';
import Search from '../../components/index/Search.vue';
const title = ref('小程序平台'); const title = ref('小程序平台');
const { countInfo, addCount } = useCountStore(); const { countInfo, addCount } = useCountStore();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment