20 lines
326 B
Vue
20 lines
326 B
Vue
<script setup lang="ts">
|
|
import { NButton, NSpace } from 'naive-ui'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="competition-add">
|
|
<NSpace vertical>
|
|
<NButton type="primary">
|
|
Add Competition
|
|
</NButton>
|
|
</NSpace>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.competition-add {
|
|
padding: 20px;
|
|
}
|
|
</style>
|