14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
function export_frs() {
|
|
var w = window.location.href = "/export_frs.csv";
|
|
}
|
|
|
|
new Vue({
|
|
el: '#countries',
|
|
data: {
|
|
selected: "France",
|
|
options: [{
|
|
text: 'France',
|
|
value: 'france'
|
|
}, ]
|
|
}
|
|
}) |