• 替换模板中的变量

    Parameters

    • template: string

      带模板变量的字符串

    • props: Record<string, any>

      变量字典

    Returns string

    返回替换后的字符串

    interpolate('hello {{name}}', { name: 'world' }) -> 'hello world'