Skip to content
Snippets Groups Projects
Commit e8e847d9 authored by moon's avatar moon
Browse files

Included the help pdf file

parent c8801637
No related branches found
No related tags found
No related merge requests found
File added
<template>
<div class="flex flex-wrap justify-center">
<div class="w-5/6">
<h2 class="font-bold">
Help
</h2>
<p class="text-3xl">
Content of this page coming soon..
</p>
<embed :src="pdfLink + '#toolbar=0&navpanes=0&scrollbar=0'" width="100%" height="800px"/>
</div>
</div>
</template>
<script>
export default {};
export default {
name: 'Help',
data() {
return {
pdfLink : require('@/assets/CD-CODE_help_page.pdf'),
};
},
};
</script>
<style>
......
module.exports = {
runtimeCompiler: true
runtimeCompiler: true,
chainWebpack: config => {
config.module.rule('pdf')
.test(/\.pdf$/)
.use('file-loader').loader('file-loader')
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment