Markwon/docs/.vuepress/components/LegacyWarning.vue
2019-01-12 15:58:24 +03:00

14 lines
331 B
Vue

<template>
<div class="warning custom-block">
<p class="custom-block-title">WARNING</p>
<p>This is documentation for <u>legacy 2.x.x</u> versions. For the most current version <a :href="$withBase('/')">click here.</a></p>
</div>
</template>
<script>
export default {
name: 'LegacyWarning'
}
</script>