factory_web/src/views/template/blank.vue

20 lines
204 B
Vue

<template>
<el-main>
<h2>{{ title }}</h2>
</el-main>
</template>
<script>
export default {
name: 'blank',
data() {
return {
title: "BLANK PAGE :)"
}
}
}
</script>
<style>
</style>