mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
30 lines
306 B
Vue
30 lines
306 B
Vue
<template>
|
|
<div>not relevant</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
/**
|
|
* This Vue Component is a test
|
|
* @returns {vue-tested} vue-tested component
|
|
*/
|
|
export default {
|
|
|
|
/** props */
|
|
props: {
|
|
|
|
/**
|
|
* This is a number
|
|
*/
|
|
myNumber: {
|
|
default: 42,
|
|
type: Number
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|