@sirusdev/prescription-editor-nuxt-vuetify
v0.0.5
Published
prescription editor for nuxt framework + vuetify
Downloads
23
Keywords
Readme
@sirusdev/prescription-editor-nuxt-vuetify
prescription editor input component for nuxt frameworks + vuetify
Quick Start
this module can only be used on typescript environment, check nuxt typescript module documentation to setup one.
After all in placed, follow these simple steps
install this modules using
npm
CLInpm i @sirusdev/prescription-editor-nuxt-vuetify
register this modules on consumer configuration
nuxt.config.ts
buildModules: [ ... '@sirusdev/prescription-editor-nuxt-vuetify' ] ...
add typings on
tsconfig.json
to enable intellisense features"types": [ ... "@sirusdev/prescription-editor-nuxt-vuetify" ]
prescription editor input will available globally, and can be used on any components or pages
<sirus-prescription-editor v-model="prescription" :disabled="disabled" :external-labels="externalLabels" class="flex-grow-1" />
controller
@Component export default class IndexPage extends Vue { prescription = ''; // prescription in string disabled = false; // disable status externalLabels = []; // labels to be added at the beginning of prescription }