UNPKG

miniprogram-setup

Version:
20 lines (15 loc) 259 B
import { ComponentWithSetup } from '@/index' ComponentWithSetup({ data: { count: 0, }, async setup() { const count = await getCount() return () => ({ count, }) }, }) async function getCount() { return 1 }