Error

{#if !!error.message && !!error.stack}
          {error.message}
      
          {error.stack}
      
{:else if typeof error==="string"}
            {error}
        
{:else}
            {JSON.stringify(error,null,2)}
        
{/if}