29 lines
No EOL
495 B
Vue
29 lines
No EOL
495 B
Vue
<template>
|
|
<input type="button" class="nav-button" v-bind:value="text"/>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default({
|
|
name: "nav-button",
|
|
props: {
|
|
text: String,
|
|
scenario: String,
|
|
},
|
|
methods: {
|
|
navTo(){
|
|
|
|
}
|
|
}
|
|
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nav-button {
|
|
background-color: lightgray;
|
|
padding: 2.5px;
|
|
border-radius: 5px;
|
|
min-width: 70px;
|
|
}
|
|
</style> |