Update new functions
This commit is contained in:
@@ -62,7 +62,7 @@ const BasicDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(BasicDemo, '#demo-basic');
|
||||
Mount(BasicDemo, '#demo-basic');
|
||||
```
|
||||
|
||||
### With Reactive Legend
|
||||
@@ -104,7 +104,7 @@ const ReactiveDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(ReactiveDemo, '#demo-reactive');
|
||||
Mount(ReactiveDemo, '#demo-reactive');
|
||||
```
|
||||
|
||||
### Address Form
|
||||
@@ -146,7 +146,7 @@ const AddressDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(AddressDemo, '#demo-address');
|
||||
Mount(AddressDemo, '#demo-address');
|
||||
```
|
||||
|
||||
### Payment Method
|
||||
@@ -187,7 +187,7 @@ const PaymentDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(PaymentDemo, '#demo-payment');
|
||||
Mount(PaymentDemo, '#demo-payment');
|
||||
```
|
||||
|
||||
### Preferences Panel
|
||||
@@ -236,7 +236,7 @@ const PreferencesDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(PreferencesDemo, '#demo-preferences');
|
||||
Mount(PreferencesDemo, '#demo-preferences');
|
||||
```
|
||||
|
||||
### Registration Form
|
||||
@@ -294,7 +294,7 @@ const RegistrationDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
$mount(RegistrationDemo, '#demo-registration');
|
||||
Mount(RegistrationDemo, '#demo-registration');
|
||||
```
|
||||
|
||||
### All Variants
|
||||
@@ -320,5 +320,5 @@ const VariantsDemo = () => {
|
||||
Fieldset({ legend: 'With Background', class: 'w-full bg-base-100' }, [commonContent])
|
||||
]);
|
||||
};
|
||||
$mount(VariantsDemo, '#demo-variants');
|
||||
Mount(VariantsDemo, '#demo-variants');
|
||||
```
|
||||
Reference in New Issue
Block a user