You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2021. It is now read-only.
Each column object needs a `name` and `key` attributes.
100
88
```javascript
@@ -171,6 +159,22 @@ This callback will modify the data for various operations. Such as applying a sp
171
159
}
172
160
```
173
161
162
+
### Translation Structure
163
+
```javascript
164
+
{
165
+
limit:'Limit',
166
+
search:'Search',
167
+
placeholder_search:'Type to search..',
168
+
records_not_found:'No records found',
169
+
pagination: {
170
+
show:'Showing',
171
+
to:'to',
172
+
of:'of',
173
+
entries:'entries'
174
+
}
175
+
}
176
+
```
177
+
174
178
### Action Event Sctructure
175
179
```javascript
176
180
{
@@ -187,15 +191,42 @@ This callback will modify the data for various operations. Such as applying a sp
187
191
]
188
192
}
189
193
```
194
+
### Development
195
+
196
+
## Build Setup
197
+
198
+
```bash
199
+
# install dependencies
200
+
npm install
201
+
202
+
# serve with hot reload at localhost:8080
203
+
npm run dev
204
+
205
+
# build for production with minification
206
+
npm run build
207
+
208
+
# build for production and view the bundle analyzer report
209
+
npm run build --report
210
+
211
+
# run unit tests
212
+
npm run unit
213
+
214
+
# run e2e tests
215
+
npm run e2e
216
+
217
+
# run all tests
218
+
npm test
219
+
```
220
+
221
+
For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
190
222
191
223
### Implementation examples
192
224
- Using Laravel 5.3 and pagination: [laravel-datasource-example](https://github.com/coderdiaz/laravel-datasource-example).
193
225
194
-
195
226
### Contributions
196
227
All contributions are welcome send your PR and Issues.
197
228
198
229
### License
199
-
Vue Datasource is open-sourced software licensed under the [MIT license](https://raw.githubusercontent.com/coderdiaz/vue-datasource/master/LICENSE)
230
+
This is a open-source software licensed under the [MIT license](https://raw.githubusercontent.com/coderdiaz/vue-datasource/master/LICENSE)
200
231
201
-
##### Created by Javier Diaz. Translation enhancement by [itsuwaribito](https://github.com/itsuwaribito)
232
+
##### Created by Javier Diaz. Translation by [itsuwaribito](https://github.com/itsuwaribito)
0 commit comments