Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Aug 7, 2018
1 parent 99f6b3f commit b69fcfe
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
<v-btn icon @click.stop="menuVisible = !menuVisible">
<v-icon>menu</v-icon>
</v-btn>
<!-- <v-btn icon @click.stop="miniVariant = !miniVariant">
<v-icon v-html="miniVariant ? 'chevron_right' : 'chevron_left'"></v-icon>
</v-btn> -->
<!-- <v-btn icon @click.stop="clipped = !clipped">
<v-icon>web</v-icon>
</v-btn> -->
<v-toolbar-title v-text="title"></v-toolbar-title>
<v-autocomplete
label="Search package..."
Expand Down Expand Up @@ -92,9 +86,6 @@
</template>
</v-autocomplete>
<v-spacer></v-spacer>
<!-- <v-btn icon @click.stop="rightDrawer = !rightDrawer">
<v-icon>menu</v-icon>
</v-btn> -->
</v-toolbar>
<v-content>
<!-- <router-view/> -->
Expand All @@ -118,21 +109,17 @@ export default class App extends Vue {
@Prop() private selectedPackageProp!: string|null;
@Prop() private clippedProp!: boolean;
@Prop() private hasFocusProp!: boolean;
// @Prop() private fixedProp!: boolean;
// @Prop() private miniVariantProp!: boolean;
@Prop() private titleProp!: string;
private menuVisible: boolean;
private selectedPackage: string|null;
private searchItems: Array<string|{}>;
private title: string = 'npmFrog';
private clipped: boolean = true;
private hasFocus: boolean = false;
// private fixed: boolean = false;
private items: any[] = [{
icon: 'bubble_chart',
title: 'Inspire',
}];
// private miniVariant: boolean = false;
constructor() {
super();
Expand Down

0 comments on commit b69fcfe

Please sign in to comment.