Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Dacredible's full-sized avatar
🎯
Focusing

Jikun Li Dacredible

🎯
Focusing
View GitHub Profile
@Dacredible
Dacredible / Confirm.vue
Created April 10, 2018 00:01 — forked from eolant/Confirm.vue
Vuetify Confirm Dialog component that can be used locally or globally
<template>
<v-dialog v-model="dialog" :max-width="options.width" @keydown.esc="cancel()">
<v-toolbar dark :color="options.color" dense>
<v-toolbar-title class="white--text">{{ title }}</v-toolbar-title>
</v-toolbar>
<v-card tile>
<v-card-text v-show="!!message">{{ message }}</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="primary darken-1" flat="flat" @click.native="agree()">Yes</v-btn>
@Dacredible
Dacredible / README-Template.md
Created December 28, 2017 23:16 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites