22 lines
287 B
Vue
22 lines
287 B
Vue
<template>
|
|
<div class="dice-view">
|
|
<h3>🎲 骰子工具</h3>
|
|
<p>纯前端骰子功能</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dice-view {
|
|
padding: 8px;
|
|
}
|
|
h3 {
|
|
font-size: 14px;
|
|
color: #2c3e50;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
p {
|
|
font-size: 13px;
|
|
color: #7f8c8d;
|
|
}
|
|
</style>
|