osmanli-yatirim 0.4.7 → 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 +23 -0
- package/dist/OsmanliYatirimPackage.common.about.js +147 -1114
- package/dist/OsmanliYatirimPackage.common.js +1003 -33
- package/dist/OsmanliYatirimPackage.umd.about.js +147 -1114
- package/dist/OsmanliYatirimPackage.umd.js +1003 -33
- package/dist/OsmanliYatirimPackage.umd.min.about.js +147 -1114
- package/dist/OsmanliYatirimPackage.umd.min.js +1003 -33
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,7 @@ 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 />
|
|
53
54
|
<cuopon-redemption-extract />
|
|
54
55
|
</template>
|
|
55
56
|
```
|
|
@@ -229,6 +230,28 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
229
230
|
```
|
|
230
231
|
---
|
|
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
|
+
|
|
232
255
|
#### Halka Arz - Talep Anasayfa
|
|
233
256
|
|
|
234
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.
|