40 lines
628 B
Vue
40 lines
628 B
Vue
<template>
|
|
<div class="download">
|
|
<button @click="download()">📎下载附件代码</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { defineProps } from "vue";
|
|
const url = defineProps({
|
|
url: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
});
|
|
const download = () => {
|
|
window.open(url.url);
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
button {
|
|
background-color: #138389;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
padding: 5px 10px;
|
|
margin: auto 10px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #126050;
|
|
transition: background-color 0.2s ease-in-out;
|
|
}
|
|
|
|
.download {
|
|
display: inline-block;
|
|
}
|
|
</style>
|