
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.