mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01: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> |