Added placeholder for REST Mock
This commit is contained in:
@@ -3,7 +3,6 @@ import { ref } from 'vue';
|
|||||||
import XmlTool from './components/XmlTool.vue'
|
import XmlTool from './components/XmlTool.vue'
|
||||||
|
|
||||||
const activeToolBox = ref('')
|
const activeToolBox = ref('')
|
||||||
const tools = ref('')
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -14,9 +13,13 @@ const tools = ref('')
|
|||||||
<label for="formatter">Formatter</label>
|
<label for="formatter">Formatter</label>
|
||||||
<input v-model="activeToolBox" type="radio" id="formatter" value="formatter" />
|
<input v-model="activeToolBox" type="radio" id="formatter" value="formatter" />
|
||||||
|
|
||||||
|
<label for="restmock">REST Mock</label>
|
||||||
|
<input v-model="activeToolBox" type="radio" id="restmock" value="restmock" />
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
<XmlTool v-if="activeToolBox == 'xml'" />
|
<XmlTool v-if="activeToolBox == 'xml'" />
|
||||||
<h1 v-if="activeToolBox == 'formatter'">Formatter</h1>
|
<h1 v-if="activeToolBox == 'formatter'">Formatter</h1>
|
||||||
|
<h1 v-if="activeToolBox == 'restmock'">REST Mock</h1>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|||||||
Reference in New Issue
Block a user