mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-11-04 12:52:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineComponent } from 'vue'
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  name: 'App',
 | 
						|
  setup() {
 | 
						|
    return () => (
 | 
						|
      <>
 | 
						|
        <h1>App</h1>
 | 
						|
      </>
 | 
						|
    )
 | 
						|
  }
 | 
						|
})
 |