Skip to content

Instantly share code, notes, and snippets.

View ajtruex's full-sized avatar
💻

Andrew Truex ajtruex

💻
View GitHub Profile
@ajtruex
ajtruex / 8bit.svg
Last active September 12, 2017 01:43
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<template>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<br>
<div class="input-group">
<input class="form-control form-control-lg" type="text" v-model="search" placeholder="Search" @keyup.enter.stop="result">
<span class="input-group-btn">
<button type="submit" @click.prevent="result" class="btn btn-primary">Submit</button>
</span>
import Vue from 'vue'
import App from './App.vue'
Vue.use(VueResource);
new Vue({
el: '#app',
render: h => h(App)
})
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.