@@ -14,4 +14,5 @@ export default {
IHaveReadAndAgree:"已經閱讀並同意",
Cancel: "取消",
+ SearchMainnet: "搜索主網",
};
@@ -1,3 +1,25 @@
<template>
- <div>123</div>
-</template>
+ <div class="container">
+ <van-search
+ v-model="value"
+ shape="round"
+
+ :placeholder="$t('login.SearchMainnet')"
+ class="search"
+ />
+ </div>
+</template>
+<script setup>
+const value = ref('')
+</script>
+<style scoped lang="less">
+.search{
+ background-color: transparent;
+}
+:deep(.van-search__content){
+ background: @bg-color1;
+</style>