• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • pages
  • SearchPage.ets
  • desc:同步 搜索主页(4.0) · 5210b149
    5210b149 Browse Files
    yangchenggong1_wd authored 2024-04-10 14:20:37 +0800
SearchPage.ets 205 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
import { SearchComponent } from '../components/search/SearchComponent'

@Entry
@Component
struct SearchPage {
  build() {
    Column(){
      SearchComponent()
    }.height('100%')
    .width('100%')
  }
}