osmanli-yatirim 0.4.4 → 0.4.5
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 +24 -0
- package/dist/OsmanliYatirimPackage.common.about.js +191 -1175
- package/dist/OsmanliYatirimPackage.common.js +1022 -35
- package/dist/OsmanliYatirimPackage.umd.about.js +191 -1175
- package/dist/OsmanliYatirimPackage.umd.js +1022 -35
- package/dist/OsmanliYatirimPackage.umd.min.about.js +191 -1175
- package/dist/OsmanliYatirimPackage.umd.min.js +1022 -35
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,6 +48,8 @@ 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 />
|
|
51
53
|
</template>
|
|
52
54
|
```
|
|
53
55
|
|
|
@@ -182,6 +184,28 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
182
184
|
```
|
|
183
185
|
---
|
|
184
186
|
|
|
187
|
+
#### Varant - Varant Ekstresi
|
|
188
|
+
`/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.
|
|
189
|
+
|
|
190
|
+
```
|
|
191
|
+
<template>
|
|
192
|
+
<warrant-extract />
|
|
193
|
+
</template>
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
#### router.js
|
|
197
|
+
```
|
|
198
|
+
{
|
|
199
|
+
path: "/varant-ekstresi",
|
|
200
|
+
name: "WarrantExtract",
|
|
201
|
+
component: () => import("@/views/e-sube/Extracts/WarrantExtract.vue"),
|
|
202
|
+
meta: {
|
|
203
|
+
requiresAuth: true
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
```
|
|
207
|
+
---
|
|
208
|
+
|
|
185
209
|
#### Halka Arz - Talep Anasayfa
|
|
186
210
|
|
|
187
211
|
`/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.
|