Fixed Readme
This commit is contained in:
parent
2f69e4fbbf
commit
6f4a7d23db
43
README.md
43
README.md
@ -108,6 +108,41 @@ const App = () => {
|
||||
};
|
||||
```
|
||||
|
||||
### An example of initialization a CGSelect in Vue.
|
||||
|
||||
```javascript
|
||||
<template>
|
||||
<div>
|
||||
<button class="cg-dropdown cg-dropdown_selector"></button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CGSelect from "cg-select";
|
||||
|
||||
export default {
|
||||
mounted() {
|
||||
const drop = new CGSelect({
|
||||
selector: ".cg-dropdown_selector",
|
||||
placeholder: "Выберите авто",
|
||||
items: [
|
||||
"BMW",
|
||||
{
|
||||
id: "213sade",
|
||||
title: "Opel",
|
||||
value: 1,
|
||||
},
|
||||
"Mersedes",
|
||||
"MAN",
|
||||
"Ferari",
|
||||
],
|
||||
});
|
||||
console.log(drop);
|
||||
},
|
||||
};
|
||||
</script>
|
||||
```
|
||||
|
||||
## Example of different selects
|
||||
|
||||
<a href="https://cg-select.itguild.info/">View live example</a>
|
||||
@ -128,10 +163,10 @@ All documentation on CG-SELECT is located in the folder of the same name. The do
|
||||
|
||||
## Compatibility
|
||||
|
||||
| Application Compatibility | JS | React | Angular | Vue |
|
||||
| ------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------: | :---------------------------------------------------------------------: | :---------------------------------------------------------------------: |
|
||||
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) |
|
||||
| Comment | Tested in Js applications and it works. | The select is initiated inside the `useEffect() `hook | not yet available | not yet available |
|
||||
| Application Compatibility | JS | React | Angular | Vue |
|
||||
| ------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------: | :---------------------------------------------------------------------: | :----------------------------------------------------------------------: |
|
||||
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) |
|
||||
| Comment | Tested in Js applications and it works. | The select is initiated inside the `useEffect() `hook | not yet available | The select is initiated inside the `mounted() `hook |
|
||||
|
||||
## History
|
||||
|
||||
|
43
READMERU.md
43
READMERU.md
@ -109,6 +109,41 @@ const App = () => {
|
||||
};
|
||||
```
|
||||
|
||||
### Пример инициализации CGSelect в Vue.
|
||||
|
||||
```javascript
|
||||
<template>
|
||||
<div>
|
||||
<button class="cg-dropdown cg-dropdown_selector"></button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CGSelect from "cg-select";
|
||||
|
||||
export default {
|
||||
mounted() {
|
||||
const drop = new CGSelect({
|
||||
selector: ".cg-dropdown_selector",
|
||||
placeholder: "Выберите авто",
|
||||
items: [
|
||||
"BMW",
|
||||
{
|
||||
id: "213sade",
|
||||
title: "Opel",
|
||||
value: 1,
|
||||
},
|
||||
"Mersedes",
|
||||
"MAN",
|
||||
"Ferari",
|
||||
],
|
||||
});
|
||||
console.log(drop);
|
||||
},
|
||||
};
|
||||
</script>
|
||||
```
|
||||
|
||||
## Примеры различных вариантов выбора.
|
||||
|
||||
<a href="https://cg-select.itguild.info/">Рабочий пример</a>
|
||||
@ -127,10 +162,10 @@ const App = () => {
|
||||
|
||||
## Совместимость
|
||||
|
||||
| Совместимость в приложениях | JS | React | Angular | Vue |
|
||||
| --------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------: | :---------------------------------------------------------------------: | :---------------------------------------------------------------------: |
|
||||
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) |
|
||||
| Комментарий | Протестировано в Js приложениях | Инициация селекта происходит внутри хука `useEffect()` | пока недоступно | пока недоступно |
|
||||
| Совместимость в приложениях | JS | React | Angular | Vue |
|
||||
| --------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------: | :---------------------------------------------------------------------: | :----------------------------------------------------------------------: |
|
||||
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) |
|
||||
| Комментарий | Протестировано в Js приложениях | Инициация селекта происходит внутри хука `useEffect()` | пока недоступно | Инициация селекта происходит внутри хука `mounted()` |
|
||||
|
||||
## История
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user