osmanli-yatirim 0.4.4 → 0.4.7

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 CHANGED
@@ -48,6 +48,9 @@ NPM modülüne dönüştürülmüş olan componentleri aşağıdaki isimleriyle
48
48
  <buy-sell-stocks />
49
49
  <request-tracking />
50
50
  <share-extract />
51
+ <option-extract />
52
+ <warrant-extract />
53
+ <cuopon-redemption-extract />
51
54
  </template>
52
55
  ```
53
56
 
@@ -182,6 +185,50 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
182
185
  ```
183
186
  ---
184
187
 
188
+ #### Varant - Varant Ekstresi
189
+ `/e-sube/Extracts/` klasörlerini oluşturun ve içerisine `WarrantExtract.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
190
+
191
+ ```
192
+ <template>
193
+ <warrant-extract />
194
+ </template>
195
+ ```
196
+
197
+ #### router.js
198
+ ```
199
+ {
200
+ path: "/varant-ekstresi",
201
+ name: "WarrantExtract",
202
+ component: () => import("@/views/e-sube/Extracts/WarrantExtract.vue"),
203
+ meta: {
204
+ requiresAuth: true
205
+ }
206
+ }
207
+ ```
208
+ ---
209
+
210
+ #### Bono - Kupon ve İtfa Ekstresi
211
+ `/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.
212
+
213
+ ```
214
+ <template>
215
+ <cuopon-redemption-extract />
216
+ </template>
217
+ ```
218
+
219
+ #### router.js
220
+ ```
221
+ {
222
+ path: "/bono-kupon-itfa-ekstre",
223
+ name: "CuoponRedemptionExtract",
224
+ component: () => import("@/views/e-sube/Extracts/CuoponRedemptionExtract.vue"),
225
+ meta: {
226
+ requiresAuth: true
227
+ }
228
+ }
229
+ ```
230
+ ---
231
+
185
232
  #### Halka Arz - Talep Anasayfa
186
233
 
187
234
  `/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.