Skip to content

Instantly share code, notes, and snippets.

View UrvishSSPL's full-sized avatar

Urvish UrvishSSPL

View GitHub Profile
@dragg
dragg / Select2
Last active August 27, 2021 05:31
Vue Components
<template>
<select :name="name" class="form-control">
<slot></slot>
</select>
</template>
<script>
import 'select2-bootstrap-theme/dist/select2-bootstrap.css';
export default {