This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This combined file was created by the DataTables downloader builder: | |
* https://datatables.net/download | |
* | |
* To rebuild or modify this file with the latest versions of the included | |
* software please visit: | |
* https://datatables.net/download/#dt/dt-1.10.18/b-1.5.4/b-html5-1.5.4/b-print-1.5.4 | |
* | |
* Included libraries: | |
* DataTables 1.10.18, Buttons 1.5.4, HTML5 export 1.5.4, Print view 1.5.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//keyword using | |
using System; | |
namespace hello_world { | |
//ini pendefinisian kelas | |
class halo { | |
// method | |
static void Main(string[] args){ | |
// ini inti programnya | |
Console.WriteLine("Hello World"); | |
Console.ReadKey();} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ..... another setup above here ...... // | |
plugins: [ | |
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /id|^en/) | |
] | |
// ..... another setup below here ...... // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form> | |
<g-field label="Name" maxlength="20"> | |
<g-input placeholder="Default Text Input" /> | |
</g-field> | |
<g-field label="Username" message="Username ini tersedia" type="success"> | |
<g-input value="cahyowhy" /> | |
</g-field> | |
<g-field label="Email" message="Format Email anda salah!" type="danger"> | |
<g-input value="[email protected]"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form> | |
<g-field label="Color Danger" message="Example colors type danger" type="danger"> | |
<g-input value="danger"> | |
<i slot="iconLeft" class="fas fa-user-slash"></i> | |
<i slot="iconRight" class="fas fa-times"></i> | |
</g-input> | |
</g-field> | |
<g-field label="Color success" type="success" message="Example colors type success"> | |
<g-checkbox>I agree to the terms and conditions</g-checkbox> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form> | |
<div class="block"> | |
<p class="title is-6">Basic Addon</p> | |
<g-field has-addons> | |
<g-input placeholder="default addon" /> | |
<div class="control"> | |
<g-button type="info">Ok</g-button> | |
</div> | |
</g-field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form> | |
<div class="block"> | |
<p class="title is-6">Adjust position of grouped component</p> | |
<g-field is-grouped> | |
<div class="control"> | |
<g-button type="primary">Submit</g-button> | |
</div> | |
<div class="control"> | |
<g-button type="light">Cancel</g-button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form> | |
<g-field label="Name" is-horizontal> | |
<g-input maxlength="20" placeholder="Default Text Input"/> | |
</g-field> | |
<g-field label="Username" message="Username is avalaible" type="success" is-horizontal> | |
<g-input value="cahyowhy"/> | |
</g-field> | |
<g-field label="Email" message="Email format is wrong!" type="danger" is-horizontal> | |
<g-input value="[email protected]"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<g-field> | |
<g-checkbox v-model="showNumbering">Apply Numbering</g-checkbox> | |
</g-field> | |
<g-field> | |
<g-checkbox v-model="bordered">Apply Border to table</g-checkbox> | |
</g-field> | |
<g-field> | |
<g-checkbox v-model="striped">Apply Strip to table</g-checkbox> | |
</g-field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<g-table :datas="userDatas2" :columns="userColumns2" type="info" use-paging :total-data="10" :per-page="5" | |
front-end-pagination show-numbering /> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
userDatas2: [ |
OlderNewer