Fix linting issues
This commit is contained in:
parent
79bea62113
commit
20d656542e
5 changed files with 52 additions and 52 deletions
|
@ -14,7 +14,7 @@ export default {
|
|||
name: 'app',
|
||||
components: {
|
||||
SkipLink,
|
||||
Welcome,
|
||||
Welcome
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
type: String,
|
||||
type: String
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
|
@ -38,44 +38,44 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data: function () {
|
||||
return {
|
||||
activeTab: 0,
|
||||
open: false,
|
||||
links: [
|
||||
{
|
||||
title: 'Home',
|
||||
href: '#0',
|
||||
},
|
||||
{
|
||||
title: 'Drupal',
|
||||
href: 'https://www.drupal.org',
|
||||
},
|
||||
{
|
||||
title: 'Vue.js',
|
||||
href: 'https://vuejs.org',
|
||||
},
|
||||
{
|
||||
title: 'Tailwind CSS',
|
||||
href: 'https://tailwindcss.com',
|
||||
},
|
||||
{
|
||||
title: 'View code on GitHub',
|
||||
href: 'https://github.com/opdavies/rebuilding-bartik',
|
||||
},
|
||||
{
|
||||
title: 'Read blog post',
|
||||
href: 'https://www.oliverdavies.uk/blog/rebuilding-bartik-with-vuejs-tailwind-css',
|
||||
},
|
||||
]
|
||||
}
|
||||
},
|
||||
export default {
|
||||
data: function () {
|
||||
return {
|
||||
activeTab: 0,
|
||||
open: false,
|
||||
links: [
|
||||
{
|
||||
title: 'Home',
|
||||
href: '#0'
|
||||
},
|
||||
{
|
||||
title: 'Drupal',
|
||||
href: 'https://www.drupal.org'
|
||||
},
|
||||
{
|
||||
title: 'Vue.js',
|
||||
href: 'https://vuejs.org'
|
||||
},
|
||||
{
|
||||
title: 'Tailwind CSS',
|
||||
href: 'https://tailwindcss.com'
|
||||
},
|
||||
{
|
||||
title: 'View code on GitHub',
|
||||
href: 'https://github.com/opdavies/rebuilding-bartik'
|
||||
},
|
||||
{
|
||||
title: 'Read blog post',
|
||||
href: 'https://www.oliverdavies.uk/blog/rebuilding-bartik-with-vuejs-tailwind-css'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
navText: function () {
|
||||
return this.open ? 'Hide' : 'Show';
|
||||
}
|
||||
computed: {
|
||||
navText: function () {
|
||||
return this.open ? 'Hide' : 'Show'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -87,13 +87,13 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import MainMenu from './MainMenu.vue';
|
||||
import MainMenu from './MainMenu.vue'
|
||||
import SidebarBlock from './SidebarBlock.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
MainMenu,
|
||||
SidebarBlock,
|
||||
SidebarBlock
|
||||
},
|
||||
|
||||
props: {
|
||||
|
|
Reference in a new issue