123456789101112131415161718192021222324252627282930 |
- const props = {
- content: {
- type: String,
- },
- navigatorProps: {
- type: Object,
- },
- prefixIcon: {
- type: null,
- },
- size: {
- type: String,
- value: 'medium',
- },
- status: {
- type: String,
- value: 'normal',
- },
- suffixIcon: {
- type: null,
- },
- theme: {
- type: String,
- value: 'default',
- },
- underline: {
- type: Boolean,
- },
- };
- export default props;
|