mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02:00
10 lines
170 B
Vue
10 lines
170 B
Vue
<template>
|
|
<p v-html="tainted"/>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function() { return { tainted: document.location } }
|
|
}
|
|
</script>
|
|
<style>
|
|
</style> |