24 lines
432 B
Vue
24 lines
432 B
Vue
|
<template>
|
||
|
<DocPTViewer :docs="docs">
|
||
|
<Rating v-model="value" />
|
||
|
</DocPTViewer>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { getPTOptions } from '@/components/doc/helpers';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
value: null,
|
||
|
docs: [
|
||
|
{
|
||
|
data: getPTOptions('Rating'),
|
||
|
key: 'Rating'
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|