mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
32 lines
704 B
Vue
32 lines
704 B
Vue
<template>
|
|
<section class="container py-24">
|
|
<!-- __template -->
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data: function () {
|
|
return {}
|
|
},
|
|
// computed: {
|
|
// categoryList () {
|
|
// return categoryList
|
|
// }
|
|
// },
|
|
head() {
|
|
return {
|
|
title: '__template',
|
|
// meta: [
|
|
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
|
// {
|
|
// hid: 'description',
|
|
// name: 'description',
|
|
// content: 'My custom description'
|
|
// }
|
|
// ]
|
|
}
|
|
}
|
|
}
|
|
</script>
|