21 lines
534 B
Vue
21 lines
534 B
Vue
<template>
|
|
<Navbar/>
|
|
<!-- <Alert/> -->
|
|
<IFrame :frameUrl="noteUrl"/>
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { computed, onMounted, ref, watch } from "vue"
|
|
import IFrame from '@/components/utils/IFrame.vue'
|
|
import Navbar from "@/components/Navbar.vue";
|
|
import Alert from '@/components/utils/Alert.vue'
|
|
const props = defineProps(['note_url', 'token'])
|
|
let isShow = ref(true)
|
|
const noteUrl = ref('/files/notes/' + props.note_url ?? '')
|
|
|
|
let msg = ref('msg')
|
|
let btnTxt = ref('btnTxt')
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style> |