
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
vue-choices-answer
Advanced tools
This is a Vue choices and answer component. Support single and multiple. Help you random select questions and calculate score.
This is a Vue choices and answer component. Support single and multiple. Help you random select questions and calculate score.
npm install vue-choices-answer
yarn add vue-choices-answer
index.js
import choicesAnswer from "vue-choices-answer";
import Vue from "vue";
Vue.use(choicesAnswer);
data.json
[
{
"type": 0, // single
"question": "100 + 100 = ?",
"choiceList": [ // choices
"100",
"200",
"300"
],
"answer": [
1 // index of correct answer
]
},
{
"type": 1, // multiple
"question": "? < 1000",
"choiceList": [
"100",
"200",
"300",
"400"
],
"answer": [
0,1,2,3
]
}
]
a.vue
<template>
<div>
<ca :options="options" @result="getResult" />
</div>
</template>
<script>
import questionStore from "../data.json";
export default {
data() {
return {
options: {
title: "问答共5道题, 每题20分, 60分以上合格",
question: questionStore,
score: {
single: 20,
multiple: 20
},
number: 5, // the number of question, questionStore need to be enough
submitText: "确定" // text of submit button
}
};
},
methods: {
getResult(score) {
console.log(score);
}
}
};
</script>
You can change style from class in elements
FAQs
This is a Vue choices and answer component. Support single and multiple. Help you random select questions and calculate score.
The npm package vue-choices-answer receives a total of 2 weekly downloads. As such, vue-choices-answer popularity was classified as not popular.
We found that vue-choices-answer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.