cashier-mer/src/App.vue

24 lines
404 B
Vue
Raw Normal View History

2024-03-30 18:04:30 +08:00
<script setup>
import { onMounted } from 'vue'
onMounted(() => {
document.body.style.setProperty('--el-color-primary', '#1890ff');
})
2024-03-30 09:23:34 +08:00
</script>
<template>
2024-03-30 18:04:30 +08:00
<router-view />
2024-03-30 09:23:34 +08:00
</template>
2024-03-30 18:04:30 +08:00
<style lang="scss">
.el-button:focus{
outline: none;
2024-03-30 09:23:34 +08:00
}
2024-04-10 10:22:20 +08:00
// 取消input的上下箭头
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
2024-03-30 09:23:34 +08:00
</style>