Skip to content

Instantly share code, notes, and snippets.

@CognitiveDave
Created April 6, 2021 18:54
Show Gist options
  • Save CognitiveDave/4792d898ae9ea694faed36b08b6cea7a to your computer and use it in GitHub Desktop.
Save CognitiveDave/4792d898ae9ea694faed36b08b6cea7a to your computer and use it in GitHub Desktop.
UI_Change_Semantic
<template>
<div>
<div class="container">
<h1>{{ msg }}</h1>
<b-form @submit="getKeywords" @reset="onReset" v-if="show">
<b-form-group
id="input-group-1"
label="Job description:"
label-for="input-1"
description="Copy and Paste in the text you want to work with."
>
<b-form-textarea
id="input-1"
v-model="form.text"
placeholder="Enter your job text here"
required
rows=10
max-rows=100
></b-form-textarea>
</b-form-group>
<b-button type="submit" variant="primary">Submit</b-button>
<b-button type="reset" variant="danger">Reset</b-button>
</b-form>
<br><br>
<text-highlight :queries="queries">{{ description }}</text-highlight>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment