osmanli-yatirim 0.4.5 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -0
- package/dist/OsmanliYatirimPackage.common.about.js +55 -1621
- package/dist/OsmanliYatirimPackage.common.js +1630 -58
- package/dist/OsmanliYatirimPackage.umd.about.js +55 -1621
- package/dist/OsmanliYatirimPackage.umd.js +1630 -58
- package/dist/OsmanliYatirimPackage.umd.min.about.js +55 -1621
- package/dist/OsmanliYatirimPackage.umd.min.js +1630 -58
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,8 @@ NPM modülüne dönüştürülmüş olan componentleri aşağıdaki isimleriyle
|
|
|
50
50
|
<share-extract />
|
|
51
51
|
<option-extract />
|
|
52
52
|
<warrant-extract />
|
|
53
|
+
<bono-extract />
|
|
54
|
+
<cuopon-redemption-extract />
|
|
53
55
|
</template>
|
|
54
56
|
```
|
|
55
57
|
|
|
@@ -206,6 +208,50 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
206
208
|
```
|
|
207
209
|
---
|
|
208
210
|
|
|
211
|
+
#### Bono - Kupon ve İtfa Ekstresi
|
|
212
|
+
`/e-sube/Extracts/` klasörlerini oluşturun ve içerisine `CuoponRedemptionExtract.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
|
|
213
|
+
|
|
214
|
+
```
|
|
215
|
+
<template>
|
|
216
|
+
<cuopon-redemption-extract />
|
|
217
|
+
</template>
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
#### router.js
|
|
221
|
+
```
|
|
222
|
+
{
|
|
223
|
+
path: "/bono-kupon-itfa-ekstre",
|
|
224
|
+
name: "CuoponRedemptionExtract",
|
|
225
|
+
component: () => import("@/views/e-sube/Extracts/CuoponRedemptionExtract.vue"),
|
|
226
|
+
meta: {
|
|
227
|
+
requiresAuth: true
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
```
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
#### Bono - Bono Ekstresi
|
|
234
|
+
`/e-sube/Extracts/` klasörlerini oluşturun ve içerisine `BondExtract.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
|
|
235
|
+
|
|
236
|
+
```
|
|
237
|
+
<template>
|
|
238
|
+
<bono-extract />
|
|
239
|
+
</template>
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
#### router.js
|
|
243
|
+
```
|
|
244
|
+
{
|
|
245
|
+
path: "/bono-ekstresi",
|
|
246
|
+
name: "BondExtract",
|
|
247
|
+
component: () => import("@/views/e-sube/Extracts/BondExtract.vue"),
|
|
248
|
+
meta: {
|
|
249
|
+
requiresAuth: true
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
```
|
|
253
|
+
---
|
|
254
|
+
|
|
209
255
|
#### Halka Arz - Talep Anasayfa
|
|
210
256
|
|
|
211
257
|
`/views/e-sube/PublicOffers/` klasörlerini oluşturun ve içerisine `PublicOfferingHomePage.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
|