color
<template> <TsLoading /> <TsLoading color="blue" /> <TsLoading color="#ff4d4f" /> </template>
text
<template> <TsLoading text="加载中..." /> <TsLoading text="正在提交" color="#fa8c16" /> </template>
<template> <div style="display: flex; align-items: center; justify-content: center; height: 100px; background: #f8f8f8;"> <TsLoading text="页面加载中..." color="#1890ff" /> </div> </template>
type
dot
bar
<template> <TsLoading type="dot" text="加载中..." /> <TsLoading type="bar" text="正在提交" color="#fa8c16" /> <TsLoading type="wave" text="正在提交" color="#fa8c16" /> <TsLoading type="moveRight" text="正在提交" color="#fa8c16" /> </template>