1<template>
2 <h1>This is about page</h1>
3</template>
4
5<script>
6 export default {
7 head() {
8 return {
9 script: [
10 {
11 src: 'https://code.jquery.com/jquery-3.5.1.min.js'
12 }
13 ],
14 }
15 }
16 }
17</script>
18
19<style scoped>
20</style>