mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
20 lines
229 B
Vue
20 lines
229 B
Vue
|
<template>
|
||
|
<div>
|
||
|
{{ test }}
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import _ from 'lodash'
|
||
|
import $ from 'cheerio'
|
||
|
|
||
|
export default {
|
||
|
data () {
|
||
|
$('<a>A</a>')
|
||
|
return {
|
||
|
test: _.startCase('lodash')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|