This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="btn btn-{{ size }}"></button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"aliasify": { | |
"aliases": { | |
"vue": "vue/dist/vue.js" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mountComponent(component, element, props = {}) { | |
new Vue({ | |
render(createElement) { | |
return createElement(component, { props }); | |
} | |
}).$mount(element); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import App from './App.vue' | |
new Vue({ | |
el: '#app', | |
store, | |
render: h => h(App) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<a v-bind:href="bind1" v-on:click="click1">{{ text }}</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__vue__options__.render = function(){with(this){return _h('div',[_h('a',{attrs:{"href":bind1},on:{"click":click1}},[_s(text)])])}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(typeof module.exports === "function"? module.exports.options: module.exports).template = "\n<div>\n <a v-bind:href=\"bind1\" v-on:click=\"click1\">{{ text }}</a>\n</div>\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Test-ExeIsAdobe { | |
param([string]$Filename) | |
if ($Filename -inotmatch ".exe$") { | |
return $false | |
} | |
try { | |
$sign = [System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromSignedFile($filename) | |
$sign.Subject -match "Adobe Systems" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class KotlinSample { | |
fun hello() { | |
throw Exception("checked exception?") | |
} | |
} |