Skip to content

Instantly share code, notes, and snippets.

@shahmir811
Created November 21, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shahmir811/4b8e8e4fdeb8566acc75f69d97531e77 to your computer and use it in GitHub Desktop.
Save shahmir811/4b8e8e4fdeb8566acc75f69d97531e77 to your computer and use it in GitHub Desktop.
ScanBarCode with vuejs
<template>
<div>
<h1 class='scanBarCode-component-title'>ScanBarCode</h1>
<div class="row">
<div class="col-md-6 offset-md-3">
<input type="text" class="form-control" placeholder="Search" v-model="searchOrderNo" />
</div>
</div>
</div>
</template>
<script>
export default {
name: 'ScanBarCode',
data() {
return {
searchOrderNo: '',
}
}
}
</script>
<style>
.scanBarCode-component-title {
margin: 40px 0px;
font-weight: bold;
line-height: 24px;
text-decoration: underline;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment